blob: a6c3a2203d610da09ae62ddc84a01c718871ab8d [file] [log] [blame]
<!DOCTYPE html>
<script src="../../resources/js-test.js"></script>
<style>
#f {
position: fixed;
background-color: #def;
width: 600px;
height: 400px;
right: -20px;
bottom: -20px;
}
body {
width: 1000px;
height: 1000px;
}
</style>
Tests that the scrollbar can be clicked even when it clips a position:fixed
element, and that the scrollbars are excluded from the viewport for determining
the element's position.
<div id="f"></div>
<script>
window.jsTestIsAsync = true;
function finishTest() {
var rect = document.querySelector("#f").getBoundingClientRect();
shouldBe(rect.left + "," + rect.top, "205,205");
finishJSTest();
}
function runTest() {
eventSender.mouseMoveTo(790, 500);
eventSender.mouseDown();
eventSender.mouseUp();
shouldBecomeEqual('scrollY > 0', 'true', finishTest);
}
onload = runTest;
</script>