| OLD | NEW |
| (Empty) | |
| 1 <!DOCTYPE html> |
| 2 |
| 3 <script> |
| 4 window.addEventListener("message", (event) => { |
| 5 if (testRunner) |
| 6 testRunner.notifyDone(); |
| 7 }); |
| 8 |
| 9 window.onload = () => { |
| 10 if (testRunner) |
| 11 testRunner.waitUntilDone(); |
| 12 var ifr = document.getElementById('ifr'); |
| 13 ifr.scrolling = 'no'; |
| 14 ifr.marginWidth = '50'; |
| 15 ifr.marginHeight = '100'; |
| 16 ifr.contentWindow.postMessage({}, '*'); |
| 17 }; |
| 18 </script> |
| 19 |
| 20 <iframe id="ifr" scrolling="yes" style="width:200px;height:200px;" |
| 21 src="http://localhost:8000/misc/resources/iframe-big.html"> |
| 22 </iframe> |
| OLD | NEW |