OLD | NEW |
1 <html> | 1 <html> |
2 <head> | 2 <head> |
3 <link rel="import" href="resources/imported-stylesheet.html"/> | 3 <link rel="import" href="../styles/resources/imported-stylesheet.html"/> |
4 <script src="../../../http/tests/inspector/inspector-test.js"></script> | 4 <script src="../../../http/tests/inspector/inspector-test.js"></script> |
5 <script src="../../../http/tests/inspector/elements-test.js"></script> | 5 <script src="../../../http/tests/inspector/elements-test.js"></script> |
6 <script> | 6 <script> |
7 | 7 |
8 function test() | 8 function test() |
9 { | 9 { |
10 InspectorTest.selectNodeAndWaitForStyles("square", step1); | 10 InspectorTest.selectNodeAndWaitForStyles("square", step1); |
11 | 11 |
12 function step1() | 12 function step1() |
13 { | 13 { |
(...skipping 11 matching lines...) Expand all Loading... |
25 } | 25 } |
26 } | 26 } |
27 </script> | 27 </script> |
28 </head> | 28 </head> |
29 | 29 |
30 <body onload="runTest()"> | 30 <body onload="runTest()"> |
31 <p>Tests that rules from imported stylesheets are correctly shown and are editab
le in inspector.</p> | 31 <p>Tests that rules from imported stylesheets are correctly shown and are editab
le in inspector.</p> |
32 <div id="square" class="square"></div> | 32 <div id="square" class="square"></div> |
33 </body> | 33 </body> |
34 </html> | 34 </html> |
OLD | NEW |