| 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 src="../../http/tests/inspector/console-test.js"></script> | 5 <script src="../../../http/tests/inspector/console-test.js"></script> |
| 6 <script> | 6 <script> |
| 7 | 7 |
| 8 function appendChild(parentId, id) | 8 function appendChild(parentId, id) |
| 9 { | 9 { |
| 10 var e = document.createElement("span"); | 10 var e = document.createElement("span"); |
| 11 e.id = id; | 11 e.id = id; |
| 12 document.getElementById(parentId).appendChild(e); | 12 document.getElementById(parentId).appendChild(e); |
| 13 } | 13 } |
| 14 | 14 |
| 15 function remove(id) | 15 function remove(id) |
| (...skipping 153 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 169 </p> | 169 </p> |
| 170 | 170 |
| 171 <div id="container"> | 171 <div id="container"> |
| 172 <div id="attrTest" attrFoo="foo"></div> | 172 <div id="attrTest" attrFoo="foo"></div> |
| 173 <div id="childTest"></div> | 173 <div id="childTest"></div> |
| 174 <div id="textTest"></div> | 174 <div id="textTest"></div> |
| 175 </div> | 175 </div> |
| 176 | 176 |
| 177 </body> | 177 </body> |
| 178 </html> | 178 </html> |
| OLD | NEW |