| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 | 2 |
| 3 <script src="../js/resources/js-test-pre.js"></script> | 3 <script src="../js/resources/js-test-pre.js"></script> |
| 4 | 4 |
| 5 <div id="container"> | 5 <div id="container"> |
| 6 <div id="inside"> | 6 <div id="inside"> |
| 7 <iframe id="frame1" srcdoc="frame1"></iframe> | 7 <iframe id="frame1" srcdoc="frame1"></iframe> |
| 8 <iframe id="frame2" srcdoc="frame2"></iframe> | 8 <iframe id="frame2" srcdoc="frame2"></iframe> |
| 9 </div> | 9 </div> |
| 10 </div> | 10 </div> |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 43 frame1.contentWindow.onunload = function() { | 43 frame1.contentWindow.onunload = function() { |
| 44 frame1.onload = runTest; | 44 frame1.onload = runTest; |
| 45 frame2.onload = runTest; | 45 frame2.onload = runTest; |
| 46 document.body.appendChild(inside); | 46 document.body.appendChild(inside); |
| 47 }; | 47 }; |
| 48 | 48 |
| 49 container.parentNode.removeChild(container); | 49 container.parentNode.removeChild(container); |
| 50 }; | 50 }; |
| 51 </script> | 51 </script> |
| 52 | 52 |
| 53 <script src="../js/resources/js-test-post.js"></script> | |
| OLD | NEW |