Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / scrolling / scroll-without-document-element-renderer.html
blob9d14ea089a9fa32781dc75857022e5a6b9c75469
1 <!DOCTYPE html>
2 <script>
3 window.onload = function() {
4 if (window.testRunner)
5 window.testRunner.dumpAsText();
7 document.documentElement.style.display = "none";
9 // Zoom so that the window becomes scrollable.
10 if (window.internals)
11 window.internals.setPageScaleFactor(2.0);
13 window.scrollBy(0, 1);
15 document.documentElement.style.display = "inline";
17 </script>
19 <div>This test passes if it does not crash.</div>