4 /* Use simple predictable spacing between html, body and content so
5 we can propertly test scrollWidth and scrollHeight */
16 document
.body
.scrollTop
= 5000;
17 document
.body
.scrollLeft
= 4000;
19 // The calls below should not take effect, given
20 // that setting scrollTop/Left on the root node
21 // is no-op in quirks-mode.
22 document
.documentElement
.scrollTop
= 1;
23 document
.documentElement
.scrollLeft
= 1;
29 <body onload=
"scroll()">