Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <!DOCTYPE html> | |
| 2 | |
| 3 <iframe id="ifr" scrolling="yes" style="width:200px;height:200px;" | |
| 4 src="http://127.0.0.1:8000/fast/frames/resources/big-page.html"> | |
| 5 </iframe> | |
| 6 | |
| 7 <script> | |
| 8 var ifr = document.getElementById('ifr'); | |
|
bokan
2016/11/21 13:21:52
This should still be in the page's load handler as
| |
| 9 ifr.scrolling = 'no'; | |
| 10 ifr.marginWidth = '50'; | |
| 11 ifr.marginHeight = '100'; | |
| 12 testRunner.notifyDone(); | |
| 13 </script> | |
| OLD | NEW |