OLD | NEW |
(Empty) | |
| 1 <html> |
| 2 <head> |
| 3 <!-- The testcase input --> |
| 4 <style> |
| 5 d\eeeex {} |
| 6 D\eeeeX {} |
| 7 </style> |
| 8 |
| 9 <script src="../../resources/testharness.js"></script> |
| 10 <script src="../../resources/testharnessreport.js"></script> |
| 11 |
| 12 <script> |
| 13 test(function() { |
| 14 var styleElm = document.getElementsByTagName("style")[0]; |
| 15 assert_not_equals(styleElm, null, "Style element exists"); |
| 16 var stylesheet = styleElm.sheet; |
| 17 assert_not_equals(stylesheet, undefined, "style.sheet exists"); |
| 18 rules = stylesheet.cssRules; |
| 19 assert_equals(rules.length, 2, "cssRules.length == 2"); |
| 20 assert_equals(rules[0].selectorText, "d\ueeeex", "Lowercase identifi
er with escapes"); |
| 21 assert_equals(rules[1].selectorText, "d\ueeeex", "Uppercase identifi
er with escapes"); |
| 22 }, "Correctly parsed identifier with escapes"); |
| 23 </script> |
| 24 </head> |
| 25 <body><!-- Intentionally left empty --></body> |
| 26 </html> |
OLD | NEW |