Chromium Code Reviews| Index: third_party/WebKit/LayoutTests/fast/frames/iframe-hide-show-scrollbars.html |
| diff --git a/third_party/WebKit/LayoutTests/fast/frames/iframe-hide-show-scrollbars.html b/third_party/WebKit/LayoutTests/fast/frames/iframe-hide-show-scrollbars.html |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..be2af2a4f5f238678384d006c68cb945431ab963 |
| --- /dev/null |
| +++ b/third_party/WebKit/LayoutTests/fast/frames/iframe-hide-show-scrollbars.html |
| @@ -0,0 +1,20 @@ |
| +<!DOCTYPE html> |
| +<style> |
| +iframe { |
| + width: 100px; |
| + height: 100px; |
| +} |
| +</style> |
| +<iframe srcdoc="<style>body{margin:0px}</style>bananas bananas bananas bananas bananas 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).
|
| +<script> |
| +if (self.testRunner) |
| + testRunner.waitUntilDone(); |
| +onload = (function() { |
| + document.querySelector("iframe").style.display = "none"; |
| + requestAnimationFrame(function() { |
| + document.querySelector("iframe").style.display = ""; |
| + if (self.testRunner) |
| + testRunner.notifyDone(); |
| + }); |
| +}); |
| +</script> |