OLD | NEW |
---|---|
(Empty) | |
1 <!DOCTYPE html> | |
2 <style> | |
3 ::cue {} | |
4 ::cue(c) {} | |
5 </style> | |
6 <script src="../../resources/js-test.js"></script> | |
7 <script> | |
8 description("Check serialization of ::cue and ::cue()"); | |
9 | |
10 var rules = document.styleSheets[0].cssRules; | |
11 | |
12 shouldBe("rules.length", "2"); | |
13 shouldBe("rules[0].selectorText", "'*::cue'"); | |
14 shouldBe("rules[1].selectorText", "'*::cue(c)'"); | |
andersr
2014/10/31 10:11:29
Perhaps add a test with multiple sub-selectors?
| |
15 </script> | |
OLD | NEW |