The following two tests are identical:
|
{ |
|
parser: "", |
|
css: "null\\0", |
|
expected: [{type: "IDENT", value: "null\uFFFD"}, {type: "EOF"}], |
|
}, |
|
{ |
|
parser: "", |
|
css: "null\\0", |
|
expected: [{type: "IDENT", value: "null\uFFFD"}, {type: "EOF"}], |
|
}, |
I think that is an omission of sorts, I see no value in having both, am I missing something?
The following two tests are identical:
parse-css/tests.js
Lines 331 to 335 in c7859c4
parse-css/tests.js
Lines 336 to 340 in c7859c4
I think that is an omission of sorts, I see no value in having both, am I missing something?