2 <script src=
"../../resources/js-test.js"></script>
10 background-color: #ccc;
13 <div style=
"height: 1000px"></div>
14 <div class=
"target" id=
"t1"></div>
15 <div style=
"position: absolute; top: 100px; transform: translateZ(0)">
16 <div class=
"target" id=
"t2"></div>
23 description("Tests that scrolling to a fixed position element does not scroll the viewport.");
25 location
.hash
= "#t1";
26 shouldBe("scrollY", "0");
28 location
.hash
= "#t2";
29 shouldBe("scrollY", "200");
31 location
.hash
= "#t1";
32 shouldBe("scrollY", "200");
35 shouldBe("scrollY", "0");