| 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 <body> | 6 <body> |
| 7 <pre id="console"></pre> | 7 <pre id="console"></pre> |
| 8 <iframe name="i0"></iframe> | 8 <iframe name="i0"></iframe> |
| 9 <iframe name="i1"></iframe> | 9 <iframe name="i1"></iframe> |
| 10 <iframe name="i1"></iframe> | 10 <iframe name="i1"></iframe> |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 59 | 59 |
| 60 shouldBe("window.length", "3"); | 60 shouldBe("window.length", "3"); |
| 61 shouldBe("document['i0']", "undefined"); | 61 shouldBe("document['i0']", "undefined"); |
| 62 | 62 |
| 63 document.body.appendChild(i3InShadow); | 63 document.body.appendChild(i3InShadow); |
| 64 shouldBe("window.length", "4"); | 64 shouldBe("window.length", "4"); |
| 65 shouldBe("document['i3']", "i3InShadow.contentWindow"); | 65 shouldBe("document['i3']", "i3InShadow.contentWindow"); |
| 66 | 66 |
| 67 </script> | 67 </script> |
| 68 | 68 |
| 69 <script src="../../js/resources/js-test-post.js"></script> | |
| 70 </body> | 69 </body> |
| 71 </html> | 70 </html> |
| OLD | NEW |