Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / dom / Element / resources / frameset-quirks.html
blob728207255809f7aa983d4f5aef457dc83ec0f31a
1 <head>
2 <style>
3 html {
4 height: 2000px;
5 width: 1000px;
7 </style>
8 <script>
9 onload = function() {
10 window.scrollTo(200, 500);
12 // The calls below should not take effect, given
13 // that setting scrollTop/Left on the root node
14 // is no-op in quirks-mode, and that the body
15 // is a frameset.
16 document.documentElement.scrollTop = 1;
17 document.body.scrollTop = 2;
19 parent.verifyTest()
21 </script>
22 </head>
23 <frameset>
24 <frame src="about:blank"></frame>
25 </frameset>