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