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 appendChild() | 7 function appendChild() |
8 { | 8 { |
9 var hidden = document.getElementById("hidden"); | 9 var hidden = document.getElementById("hidden"); |
10 var child = document.createElement("div"); | 10 var child = document.createElement("div"); |
11 child.setAttribute("id", "appended"); | 11 child.setAttribute("id", "appended"); |
12 hidden.appendChild(child); | 12 hidden.appendChild(child); |
13 } | 13 } |
14 | 14 |
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
79 Tests that elements panel does not receive events upon changes to the undiscover
ed nodes. | 79 Tests that elements panel does not receive events upon changes to the undiscover
ed nodes. |
80 </p> | 80 </p> |
81 | 81 |
82 <div> | 82 <div> |
83 <div id="hidden"> | 83 <div id="hidden"> |
84 </div> | 84 </div> |
85 </div> | 85 </div> |
86 | 86 |
87 </body> | 87 </body> |
88 </html> | 88 </html> |
OLD | NEW |