Skip to content

Commit 95ad783

Browse files
committed
Add more regression tests for tinycss2 bugs.
1 parent 101c330 commit 95ad783

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

declaration_list.json

+10
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,16 @@
77
["declaration", "c", [["ident", "d"], " ", ["number", "42", 42, "integer"]], true]
88
],
99

10+
"z;a:b", [
11+
["error", "invalid"],
12+
["declaration", "a", [["ident", "b"]], false]
13+
],
14+
15+
"z:x!;a:b", [
16+
["error", "invalid"],
17+
["declaration", "a", [["ident", "b"]], false]
18+
],
19+
1020
"@import 'foo.css'; a:b; @import 'bar.css'", [
1121
["at-rule", "import", [" ", ["string", "foo.css"]], null],
1222
["declaration", "a", [["ident", "b"]], false],

0 commit comments

Comments
 (0)