OLD | NEW |
1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.or
g/TR/html4/loose.dtd"> | 1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.or
g/TR/html4/loose.dtd"> |
2 <html> | 2 <html> |
3 <head> | 3 <head> |
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 removeDoctype() | 8 function removeDoctype() |
9 { | 9 { |
10 document.removeChild(document.firstChild); | 10 document.removeChild(document.firstChild); |
11 } | 11 } |
12 | 12 |
13 function test() | 13 function test() |
14 { | 14 { |
15 InspectorTest.expandElementsTree(step1); | 15 InspectorTest.expandElementsTree(step1); |
(...skipping 16 matching lines...) Expand all Loading... |
32 </script> | 32 </script> |
33 </head> | 33 </head> |
34 | 34 |
35 <body onload="runTest()"> | 35 <body onload="runTest()"> |
36 <p> | 36 <p> |
37 Tests that removing child from the document is handled properly in the elements
panel. | 37 Tests that removing child from the document is handled properly in the elements
panel. |
38 </p> | 38 </p> |
39 | 39 |
40 </body> | 40 </body> |
41 </html> | 41 </html> |
OLD | NEW |