| 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 setAttribute(name, value) | 7 function setAttribute(name, value) |
| 8 { | 8 { |
| 9 var node = document.getElementById("node"); | 9 var node = document.getElementById("node"); |
| 10 node.setAttribute(name, value); | 10 node.setAttribute(name, value); |
| 11 } | 11 } |
| 12 | 12 |
| 13 function removeAttribute(name) | 13 function removeAttribute(name) |
| 14 { | 14 { |
| (...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 134 | 134 |
| 135 <body onload="runTest()"> | 135 <body onload="runTest()"> |
| 136 <p> | 136 <p> |
| 137 Tests that elements panel updates dom tree structure upon setting attribute. | 137 Tests that elements panel updates dom tree structure upon setting attribute. |
| 138 </p> | 138 </p> |
| 139 | 139 |
| 140 <div id="node"></div> | 140 <div id="node"></div> |
| 141 | 141 |
| 142 </body> | 142 </body> |
| 143 </html> | 143 </html> |
| OLD | NEW |