OLD | NEW |
---|---|
(Empty) | |
1 <!DOCTYPE html> | |
2 <title>:cue pseudo-class is not supported and dropped during parsing</title> | |
rune
2014/10/29 10:32:46
Drop <title> and add as a description parameter to
philipj_slow
2014/10/29 10:36:06
With testharness.js, the test title is the <title>
| |
3 <script src="../../resources/testharness.js"></script> | |
4 <script src="../../resources/testharnessreport.js"></script> | |
5 <style> | |
6 :cue { color: red; } | |
7 :cue(i) { color: red; } | |
8 </style> | |
9 <script> | |
10 test(function() { | |
11 assert_equals(document.styleSheets[0].rules.length, 0); | |
12 }); | |
13 </script> | |
OLD | NEW |