| 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>
|
| +<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>
|
|
|