OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <html> | 2 <html> |
3 <head> | 3 <head> |
4 <meta charset="utf-8"> | 4 <meta charset="utf-8"> |
5 <script src="../js/resources/js-test-pre.js"></script> | 5 <script src="../js/resources/js-test-pre.js"></script> |
6 </head> | 6 </head> |
7 <body> | 7 <body> |
8 <div id="container"> | 8 <div id="container"> |
9 <form id="testForm"> | 9 <form id="testForm"> |
10 Radio button array: | 10 Radio button array: |
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
82 shouldBe('radioNodeList1[1].checked = true; radioNodeList1.value', "'value2'"); | 82 shouldBe('radioNodeList1[1].checked = true; radioNodeList1.value', "'value2'"); |
83 | 83 |
84 document.body.appendChild(container); | 84 document.body.appendChild(container); |
85 | 85 |
86 debug(""); | 86 debug(""); |
87 debug("form again added to dom tree"); | 87 debug("form again added to dom tree"); |
88 testRadioNodeList(3); | 88 testRadioNodeList(3); |
89 | 89 |
90 container.parentNode.removeChild(container); | 90 container.parentNode.removeChild(container); |
91 </script> | 91 </script> |
92 <script src="../js/resources/js-test-post.js"></script> | |
93 </body> | 92 </body> |
94 </html> | 93 </html> |
OLD | NEW |