Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <!DOCTYPE html> | |
| 2 <style> | |
| 3 iframe { | |
| 4 width: 100px; | |
| 5 height: 100px; | |
| 6 } | |
| 7 </style> | |
| 8 <iframe srcdoc="<style>body{margin:0px}</style>bananas bananas bananas bananas b ananas bananas bananas bananas bananas bananas "></iframe> | |
|
skobes
2016/07/08 21:28:15
This can be less bananas with body{height:1000px}.
szager1
2016/07/08 21:53:30
I like bananas (because they have no bones).
| |
| 9 <script> | |
| 10 if (self.testRunner) | |
| 11 testRunner.waitUntilDone(); | |
| 12 onload = (function() { | |
| 13 document.querySelector("iframe").style.display = "none"; | |
| 14 requestAnimationFrame(function() { | |
| 15 document.querySelector("iframe").style.display = ""; | |
| 16 if (self.testRunner) | |
| 17 testRunner.notifyDone(); | |
| 18 }); | |
| 19 }); | |
| 20 </script> | |
| OLD | NEW |