| 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 id="form1"> | 7 <form id="form1"> |
| 8 <button id=button1></button> | 8 <button id=button1></button> |
| 9 <fieldset id=fieldset1><legend id=legend1></legend></fieldset> | 9 <fieldset id=fieldset1><legend id=legend1></legend></fieldset> |
| 10 <input id=inputhidden type=hidden> | 10 <input id=inputhidden type=hidden> |
| (...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 128 shouldBe('radioNodeList.length', '5'); | 128 shouldBe('radioNodeList.length', '5'); |
| 129 | 129 |
| 130 debug(""); | 130 debug(""); |
| 131 debug("Check that object element does not reflect in RadioNodeList if its owner
form is not present."); | 131 debug("Check that object element does not reflect in RadioNodeList if its owner
form is not present."); |
| 132 var nonSubtreeObjectElement = document.createElement("object"); | 132 var nonSubtreeObjectElement = document.createElement("object"); |
| 133 nonSubtreeObjectElement.setAttribute("id", "inputcommon"); | 133 nonSubtreeObjectElement.setAttribute("id", "inputcommon"); |
| 134 shouldBe('container.appendChild(nonSubtreeObjectElement); radioNodeList.length',
'5'); | 134 shouldBe('container.appendChild(nonSubtreeObjectElement); radioNodeList.length',
'5'); |
| 135 | 135 |
| 136 container.parentNode.removeChild(container); | 136 container.parentNode.removeChild(container); |
| 137 </script> | 137 </script> |
| 138 <script src="../js/resources/js-test-post.js"></script> | |
| 139 </body> | 138 </body> |
| 140 </html> | 139 </html> |
| OLD | NEW |