blob: 0b258d30cbc7e6a903fcafe7da6f66425018274e [file] [log] [blame]
<html>
<head>
<style>
body {
margin: 0;
-webkit-scroll-snap-type: mandatory;
}
.vertical {
width: 100%;
height: 600px;
-webkit-scroll-snap-coordinate: 0px 0px;
}
</style>
<script src="../../resources/js-test-pre.js"></script>
<script>
function runTest()
{
debug("Scroll-snap offsets: " + window.internals.scrollSnapOffsets(document.body));
finishJSTest();
}
function setup()
{
if (window.testRunner) {
window.jsTestIsAsync = true;
testRunner.dumpAsText();
testRunner.waitUntilDone();
setTimeout(runTest, 0);
}
}
</script>
</head>
<body onload="setup()">
<div id="child00" class="vertical"><div id="console"></div></div>
<div id="child01" class="vertical"></div>
<div id="child02" class="vertical"></div>
<div id="child03" class="vertical"></div>
<div id="child04" class="vertical"></div>
<div id="child05" class="vertical"></div>
<script src="../../resources/js-test-post.js"></script>
</body>
</html>