• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..24-May-2020-

INDEXH A D24-May-2020884 2624

READMEH A D24-May-2020613 4030

au.datH A D24-May-20208.6 KiB774666

bg.datH A D24-May-20204.3 KiB276242

bgpos.datH A D24-May-2020713 6051

border.datH A D24-May-202031.3 KiB1,7841,597

comments.datH A D24-May-2020779 5951

dodgy-media-block.datH A D24-May-2020120 109

eof.datH A D24-May-20202.9 KiB431365

flexbox.datH A D24-May-202020.3 KiB1,7141,503

font.datH A D24-May-202012.3 KiB768689

list.datH A D24-May-20208.3 KiB552478

malformed-declarations.datH A D24-May-20201.3 KiB125109

margin.datH A D24-May-20203.8 KiB315274

multicol.datH A D24-May-202015.8 KiB1,3041,123

outline.datH A D24-May-20209.2 KiB739634

overflow.datH A D24-May-20201.1 KiB9884

padding.datH A D24-May-20203.1 KiB253218

selectors.datH A D24-May-2020232 2518

tests1.datH A D24-May-20202.1 KiB192167

units.datH A D24-May-20201.6 KiB183160

unknown-properties.datH A D24-May-2020287 3025

README

1Parser testcases
2================
3
4Format
5------
6
7#data
8<css source data>
9#errors
10<list of expected errors, with line/col offsets> (ignored at present)
11#expected
12<cssom tree, as below>
13#reset
14
15Format of cssom tree
16--------------------
17
18  line        ::= rule | declaration
19  rule        ::= '| ' name
20  name        ::= .+
21  declaration ::= '|  ' property-name ': ' property-value
22
23Example
24-------
25
26#data
27* { color: #ff0000; background-image: url("foo.png"); }
28#errors
29#expected
30| *
31|  color: #ff000000
32|  background-image: url("foo.png")
33#reset
34
35TODO
36----
37
38  + Permit nesting of rules (for nested block support)
39
40