| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <html> | 2 <html> |
| 3 <head> | 3 <head> |
| 4 <script src="../../js/resources/js-test-pre.js"></script> | 4 <script src="../../js/resources/js-test-pre.js"></script> |
| 5 </head> | 5 </head> |
| 6 | 6 |
| 7 <body> | 7 <body> |
| 8 | 8 |
| 9 <p>When an option element became 'checked' or not-'checked', distribution should
happen.</p> | 9 <p>When an option element became 'checked' or not-'checked', distribution should
happen.</p> |
| 10 <p>Since an option element does not create a renderer, we cannot check this usin
g reftest.</p> | 10 <p>Since an option element does not create a renderer, we cannot check this usin
g reftest.</p> |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 48 shouldBe('nodes1.length', '1'); | 48 shouldBe('nodes1.length', '1'); |
| 49 | 49 |
| 50 nodes2 = content2.getDistributedNodes(); | 50 nodes2 = content2.getDistributedNodes(); |
| 51 shouldBe('nodes2.length', '0'); | 51 shouldBe('nodes2.length', '0'); |
| 52 | 52 |
| 53 container.innerHTML = ""; | 53 container.innerHTML = ""; |
| 54 finishJSTest(); | 54 finishJSTest(); |
| 55 }, 0); | 55 }, 0); |
| 56 | 56 |
| 57 </script> | 57 </script> |
| 58 <script src="../../js/resources/js-test-post.js"></script> | |
| 59 </body> | 58 </body> |
| 60 </html> | 59 </html> |
| OLD | NEW |