OLD | NEW |
1 <html xmlns="http://www.w3.org/1999/xhtml"> | 1 <html xmlns="http://www.w3.org/1999/xhtml"> |
2 <style> | 2 <style> |
3 abc|div { | 3 abc|div { |
4 background-color: red; | 4 background-color: red; |
5 } | 5 } |
6 | 6 |
| 7 abc|div#target { |
| 8 background-color: red; |
| 9 } |
| 10 |
7 [abc|id] { | 11 [abc|id] { |
8 background-color: green; | 12 background-color: green; |
9 } | 13 } |
10 </style> | 14 </style> |
11 <div id="target"></div> | 15 <div id="target"></div> |
12 | 16 |
13 <script src="../../../resources/testharness.js"></script> | 17 <script src="../../../resources/testharness.js"></script> |
14 <script src="../../../resources/testharnessreport.js"></script> | 18 <script src="../../../resources/testharnessreport.js"></script> |
15 | 19 |
16 <script> | 20 <script> |
17 test(function(){ | 21 test(function(){ |
18 assert_equals(document.styleSheets[0].cssRules.length, 0); | 22 assert_equals(document.styleSheets[0].cssRules.length, 0); |
19 }, "Style rules with namespace prefixes not declared before, should be ignored")
; | 23 }, "Style rules with namespace prefixes not declared before, should be ignored")
; |
20 </script> | 24 </script> |
21 | 25 |
22 </html> | 26 </html> |
OLD | NEW |