Skip to content

Commit 729aaf3

Browse files
committed
Merge pull request #3 from ezequiel/ident
Identifiers may now begin with "--".
2 parents 95ad783 + 691160f commit 729aaf3

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

component_value_list.json

+6-6
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
"red0 -red --red -\\-red\\ blue 0red -0red \u0000red _Red .red rêd r\\êd \u007F\u0080\u0081", [
2626
["ident", "red0"], " ",
2727
["ident", "-red"], " ",
28-
"-", ["ident", "-red"], " ",
28+
["ident", "--red"], " ",
2929
["ident", "--red blue"], " ",
3030
["dimension", "0", 0, "integer", "red"], " ",
3131
["dimension", "-0", 0, "integer", "red"], " ",
@@ -54,7 +54,7 @@
5454
"rgba0() -rgba() --rgba() -\\-rgba() 0rgba() -0rgba() _rgba() .rgba() rgbâ() \\30rgba() rgba () @rgba() #rgba()", [
5555
["function", "rgba0"], " ",
5656
["function", "-rgba"], " ",
57-
"-", ["function", "-rgba"], " ",
57+
["function", "--rgba"], " ",
5858
["function", "--rgba"], " ",
5959
["dimension", "0", 0, "integer", "rgba"], ["()"], " ",
6060
["dimension", "-0", 0, "integer", "rgba"], ["()"], " ",
@@ -70,7 +70,7 @@
7070
"@media0 @-Media @--media @-\\-media @0media @-0media @_media @.media @medİa @\\30 media\\", [
7171
["at-keyword", "media0"], " ",
7272
["at-keyword", "-Media"], " ",
73-
"@", "-", ["ident", "-media"], " ",
73+
["at-keyword", "--media"], " ",
7474
["at-keyword", "--media"], " ",
7575
"@", ["dimension", "0", 0, "integer", "media"], " ",
7676
"@", ["dimension", "-0", 0, "integer", "media"], " ",
@@ -83,7 +83,7 @@
8383
"#red0 #-Red #--red #-\\-red #0red #-0red #_Red #.red #rêd #êrd #\\.red\\", [
8484
["hash", "red0", "id"], " ",
8585
["hash", "-Red", "id"], " ",
86-
["hash", "--red", "unrestricted"], " ",
86+
["hash", "--red", "id"], " ",
8787
["hash", "--red", "id"], " ",
8888
["hash", "0red", "unrestricted"], " ",
8989
["hash", "-0red", "unrestricted"], " ",
@@ -308,7 +308,7 @@
308308
"12red0 12.0-red 12--red 12-\\-red 120red 12-0red 12\u0000red 12_Red 12.red 12rêd", [
309309
["dimension", "12", 12, "integer", "red0"], " ",
310310
["dimension", "12.0", 12, "number", "-red"], " ",
311-
["number", "12", 12, "integer"], "-", ["ident", "-red"], " ",
311+
["dimension", "12", 12, "integer", "--red"], " ",
312312
["dimension", "12", 12, "integer", "--red"], " ",
313313
["dimension", "120", 120, "integer", "red"], " ",
314314
["number", "12", 12, "integer"], ["dimension", "-0", 0, "integer", "red"], " ",
@@ -392,7 +392,7 @@
392392
],
393393

394394
"~=|=^=$=*=||<!------> |/**/| ~/**/=", [
395-
"~=", "|=", "^=", "$=", "*=", "||", "<!--", "-", "-", "-->",
395+
"~=", "|=", "^=", "$=", "*=", "||", "<!--", ["ident", "----"], ">",
396396
" ", "|", "|", " ", "~", "="
397397
],
398398

0 commit comments

Comments
 (0)