OLD | NEW |
1 <html> | 1 <html> |
2 <head> | 2 <head> |
| 3 <script> |
| 4 internals.settings.setCSSVariablesEnabled(true); |
| 5 </script> |
3 <style> | 6 <style> |
4 #inspected { | 7 #inspected { |
5 -webkit-var-a: green; | 8 -webkit-var-a: green; |
6 color: -webkit-var(a); | 9 color: -webkit-var(a); |
7 } | 10 } |
8 | 11 |
9 </style> | 12 </style> |
10 <script src="../../../http/tests/inspector/inspector-test.js"></script> | 13 <script src="../../../http/tests/inspector/inspector-test.js"></script> |
11 <script src="../../../http/tests/inspector/elements-test.js"></script> | 14 <script src="../../../http/tests/inspector/elements-test.js"></script> |
12 <script> | 15 <script> |
(...skipping 15 matching lines...) Expand all Loading... |
28 | 31 |
29 <body onload="runTest()"> | 32 <body onload="runTest()"> |
30 <p> | 33 <p> |
31 Tests that webkit css variables can be loaded correctly. | 34 Tests that webkit css variables can be loaded correctly. |
32 </p> | 35 </p> |
33 | 36 |
34 <div id="inspected">Text</div> | 37 <div id="inspected">Text</div> |
35 | 38 |
36 </body> | 39 </body> |
37 </html> | 40 </html> |
OLD | NEW |