diff options
Diffstat (limited to 'src/3rdparty/libcroco/tests/test-inputs/test2.1.css')
-rw-r--r-- | src/3rdparty/libcroco/tests/test-inputs/test2.1.css | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/src/3rdparty/libcroco/tests/test-inputs/test2.1.css b/src/3rdparty/libcroco/tests/test-inputs/test2.1.css new file mode 100644 index 0000000..ba447fb --- /dev/null +++ b/src/3rdparty/libcroco/tests/test-inputs/test2.1.css @@ -0,0 +1,47 @@ + +/*simple Attribute set selectors*/ +s1[foo] {prop1 : "\53 tring"} + +/* line break is invalid */ +s2[foo] {prop1 : " +tring"} + +/*simple exact attribute selector, simple ruleset*/ +s3[foo="warning"] {prop1 : value1} + +/** + *"space separated value list" + *attribute selector, simple ruleset + */ +s4[foo~="warning"] {prop1 :value1} + +/** + *"hyphen separated value list" attribute selector, + * simple ruleset + */ + + /*simple class selector, simple ruleset*/ + s5.warning {prop1 : value} + + E#myid {prop1 : value1} + + +/*below are tests that we know are working*/ + +/*simple ident pseudo class selector, simple ruleset test*/ +S6:first-child {prop1 : value1 ; prop2 : value2} + +/*function pseudo class selector, simple ruleset test*/ +S7:lang(c) {prop1 : value1} + +/*Adjacent selectors, simple ruleset test*/ +S8 + s2 {prop1: value1} + +/* quoted strings */ +.quotedstrings { + -test-string1: "foo'bar"; + -test-string2: 'foo\'bar'; + -test-string3: 'foo"bar'; + -test-string4: "foo\"bar"; + -test-string5: 'foo\\bar'; +} |