OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <html> | 2 <html> |
3 <body> | 3 <body> |
4 <script src="../../js/resources/js-test-pre.js"></script> | 4 <script src="../../js/resources/js-test-pre.js"></script> |
5 <p id="description"></p> | 5 <p id="description"></p> |
6 <div id="divId"> | 6 <div id="divId"> |
7 <form> | 7 <form> |
8 <fieldset id="fs"> | 8 <fieldset id="fs"> |
9 <button id=button1></button> | 9 <button id=button1></button> |
10 <fieldset id=fieldset1><legend id=legend1></legend></fieldset> | 10 <fieldset id=fieldset1><legend id=legend1></legend></fieldset> |
(...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
108 shouldBe('radioNodeList2[1].type', "'email'"); | 108 shouldBe('radioNodeList2[1].type', "'email'"); |
109 shouldBe('radioNodeList2[2].type', "'reset'"); | 109 shouldBe('radioNodeList2[2].type', "'reset'"); |
110 radioNodeList2[2].id = "idChanged"; | 110 radioNodeList2[2].id = "idChanged"; |
111 debug("After changing the id"); | 111 debug("After changing the id"); |
112 shouldBe('radioNodeList2.length', '2'); | 112 shouldBe('radioNodeList2.length', '2'); |
113 debug(""); | 113 debug(""); |
114 | 114 |
115 var container = document.getElementById("divId"); | 115 var container = document.getElementById("divId"); |
116 container.parentNode.removeChild(container); | 116 container.parentNode.removeChild(container); |
117 </script> | 117 </script> |
118 <script src="../../js/resources/js-test-post.js"></script> | |
119 </body> | 118 </body> |
120 </html> | 119 </html> |
OLD | NEW |