Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <!DOCTYPE html> | |
| 2 | |
| 3 <script src="../../../resources/testharness.js"></script> | |
| 4 <script src="../../../resources/testharnessreport.js"></script> | |
| 5 | |
| 6 <style> | |
| 7 @namespace html url(http://www.w3.org/1999/xhtml); | |
| 8 @namespace html url("bad-string-token | |
| 9 ); | |
| 10 div { | |
| 11 background-color: red; | |
| 12 width: 100px; | |
| 13 height: 100px; | |
| 14 } | |
| 15 html|div { | |
| 16 background-color: green; | |
| 17 } | |
| 18 </style> | |
| 19 | |
| 20 <div id=div></div> | |
| 21 | |
| 22 <script> | |
| 23 test(() => { | |
| 24 assert_equals(getComputedStyle(div).backgroundColor, "rgb(0, 128, 0)"); | |
| 25 }); | |
| 26 </script> | |
| OLD | NEW |