OLD | NEW |
---|---|
(Empty) | |
1 <!DOCTYPE html> | |
2 <script src="../resources/testharness.js"></script> | |
3 <script src="../resources/testharnessreport.js"></script> | |
4 <style> | |
5 #a { | |
6 width: 100px; | |
7 height: 100px; | |
8 background-color: green; | |
9 } | |
10 | |
11 @support\017f (background-color: red) { | |
12 #a { | |
13 background-color: red; | |
14 } | |
15 } | |
16 </style> | |
17 <div id=a></div> | |
18 <script> | |
19 test(function() { | |
20 assert_equals(getComputedStyle(a).backgroundColor, "rgb(0, 128, 0)"); | |
rune
2016/01/25 18:28:41
micro-nit: inconsistent indentation. 4 spaces in j
fs
2016/01/26 09:25:08
Fixed.
| |
21 }, "Identifier values are matched ASCII case-insensitively"); | |
22 </script> | |
OLD | NEW |