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 var containerNode; | 9 var containerNode; |
10 InspectorTest.expandElementsTree(step1); | 10 InspectorTest.expandElementsTree(step1); |
11 | 11 |
12 function step1(node) | 12 function step1(node) |
13 { | 13 { |
14 containerNode = InspectorTest.expandedNodeWithId("container"); | 14 containerNode = InspectorTest.expandedNodeWithId("container"); |
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
57 <body onload="runTest()"> | 57 <body onload="runTest()"> |
58 <p> | 58 <p> |
59 Tests that client can call undo multiple times with non-empty history. | 59 Tests that client can call undo multiple times with non-empty history. |
60 </p> | 60 </p> |
61 | 61 |
62 <div style="display:none" id="container"> | 62 <div style="display:none" id="container"> |
63 </div> | 63 </div> |
64 | 64 |
65 </body> | 65 </body> |
66 </html> | 66 </html> |
OLD | NEW |