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 <script> | 5 <script> |
6 | 6 |
7 function test() | 7 function test() |
8 { | 8 { |
9 WebInspector.showPanel("elements"); | 9 WebInspector.showPanel("elements"); |
10 InspectorTest.selectNodeAndWaitForStyles("inspected", step1); | 10 InspectorTest.selectNodeAndWaitForStyles("inspected", step1); |
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
45 <body onload="runTest()"> | 45 <body onload="runTest()"> |
46 <p> | 46 <p> |
47 Tests that adding a new rule works after sitching nodes. | 47 Tests that adding a new rule works after sitching nodes. |
48 </p> | 48 </p> |
49 | 49 |
50 <div id="inspected" style="font-size: 12px">Text</div> | 50 <div id="inspected" style="font-size: 12px">Text</div> |
51 <div id="other" style="color:red"></div> | 51 <div id="other" style="color:red"></div> |
52 | 52 |
53 </body> | 53 </body> |
54 </html> | 54 </html> |
OLD | NEW |