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