OLD | NEW |
1 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN"> | 1 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN"> |
2 <html> | 2 <html> |
3 <head> | 3 <head> |
4 <script> | 4 <script> |
5 | 5 |
6 function removeElement() { | 6 function removeElement() { |
7 document.getElementById("h3").parentNode.removeChild(document.getElementById(
"h3")); | 7 document.getElementById("h3").parentNode.removeChild(document.getElementById(
"h3")); |
8 } | 8 } |
9 | 9 |
10 </script> | 10 </script> |
(...skipping 22 matching lines...) Expand all Loading... |
33 link.attributesOfChildren(); | 33 link.attributesOfChildren(); |
34 | 34 |
35 removeElement(); | 35 removeElement(); |
36 | 36 |
37 // should not cause a crash... | 37 // should not cause a crash... |
38 link.attributesOfChildren(); | 38 link.attributesOfChildren(); |
39 } | 39 } |
40 | 40 |
41 </script> | 41 </script> |
42 | 42 |
43 <script src="../fast/js/resources/js-test-post.js"></script> | |
44 </body> | 43 </body> |
45 </html> | 44 </html> |
OLD | NEW |