Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <!DOCTYPE html> | |
| 2 | |
| 3 <script> | |
| 4 window.onload = () => { | |
| 5 var ifr = document.getElementById('ifr'); | |
| 6 ifr.scrolling = 'no'; | |
| 7 ifr.marginWidth = '50'; | |
| 8 ifr.marginHeight = '100'; | |
| 9 }; | |
| 10 </script> | |
| 11 | |
| 12 <iframe id="ifr" scrolling="yes" style="width:200px;height:200px;" | |
| 13 src="http://127.0.0.1:8000/fast/frames/resources/big-page.html"> | |
|
alexmos
2016/11/21 17:56:56
Just to check: is this going to get OOPIF coverage
| |
| 14 </iframe> | |
| OLD | NEW |