2 <script src=
"../../resources/js-test.js"></script>
13 <div id=
"space"></div>
17 "Tests that the html element excludes scrollbars when reporting " +
18 "clientWidth and clientHeight, and that it implements scroll() " +
19 "by scrolling the frame.");
21 var htmlElement
= document
.documentElement
;
22 shouldBe("htmlElement.clientWidth", "innerWidth - 20");
23 shouldBe("htmlElement.clientHeight", "innerHeight - 20");
25 htmlElement
.scroll(10, 10);
26 shouldBe("scrollX", "10");
27 shouldBe("scrollY", "10");