| Tests that elements panel shows dom tree structure. |
| |
| Text |
| <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> |
| - <html> |
| - <head> |
| <script src="../../http/tests/inspector/inspector-test.js"></script> |
| <script src="../../http/tests/inspector/elements-test.js"></script> |
| - <script> |
| function test(){ InspectorTest.expandElementsTree(step1); function step1() { InspectorTest.dumpElementsTree(); InspectorTest.completeTest(); }} |
| </script> |
| </head> |
| - <body onload="runTest()"> |
| <p>Tests that elements panel shows dom tree structure.</p> |
| - <div id="level1"> |
| - <div id="level2"> |
| "Text " |
| <div id="level3"></div> |
| </div> |
| </div> |
| </body> |
| </html> |
| |