Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / dynamic / window-resize-scrollbars-test.html
blob64a33344d7f2aed9f51e97d5026ace781b799539
1 <script>
2 if (window.testRunner)
3 testRunner.useUnfortunateSynchronousResizeMode();
4 </script>
5 <body>
6 This window should not have scroll bars. If it has scroll bars, try to use them.
7 <script>
8 var width = innerWidth;
9 var height = innerHeight;
11 document.documentElement.style.height = height - 32 + "px";
12 document.documentElement.style.width = width - 32 + "px";
13 document.body.offsetTop;
15 resizeTo(outerWidth - 24, outerHeight - 24);
16 </script>
17 </body>