OLD | NEW |
1 <html> | 1 <html> |
2 <head> | 2 <head> |
3 <script src="../../../http/tests/inspector/inspector-test.js"></script> | 3 <script src="../../../http/tests/inspector/inspector-test.js"></script> |
4 <script src="../../../http/tests/inspector/elements-test.js"></script> | 4 <script src="../../../http/tests/inspector/elements-test.js"></script> |
5 <link rel="stylesheet" href="resources/empty-background-url.css"> | 5 <link rel="stylesheet" href="../styles/resources/empty-background-url.css"> |
6 <script> | 6 <script> |
7 function test() | 7 function test() |
8 { | 8 { |
9 InspectorTest.selectNodeAndWaitForStylesWithComputed("inspected", step1); | 9 InspectorTest.selectNodeAndWaitForStylesWithComputed("inspected", step1); |
10 | 10 |
11 function step1() | 11 function step1() |
12 { | 12 { |
13 InspectorTest.dumpSelectedElementStyles(true, false); | 13 InspectorTest.dumpSelectedElementStyles(true, false); |
14 InspectorTest.completeTest(); | 14 InspectorTest.completeTest(); |
15 } | 15 } |
16 } | 16 } |
17 </script> | 17 </script> |
18 </head> | 18 </head> |
19 <body onload="runTest()"> | 19 <body onload="runTest()"> |
20 <p>Tests that empty url in the property value does not break inspector.</p> | 20 <p>Tests that empty url in the property value does not break inspector.</p> |
21 <div id="inspected"></div> | 21 <div id="inspected"></div> |
22 </body> | 22 </body> |
23 </html> | 23 </html> |
OLD | NEW |