diff options
Diffstat (limited to '')
-rw-r--r-- | layout/reftests/scrolling/subpixel-1.html | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/layout/reftests/scrolling/subpixel-1.html b/layout/reftests/scrolling/subpixel-1.html new file mode 100644 index 0000000000..a0bac5f6a6 --- /dev/null +++ b/layout/reftests/scrolling/subpixel-1.html @@ -0,0 +1,12 @@ +<!DOCTYPE HTML>
+<html>
+<body style="margin:0" onload="doTest()">
+<div style="height:1205.6px"></div>
+<div id="d" style="height:0.6px; background:red"></div>
+<script>
+function doTest() {
+ window.scrollTo(0, document.documentElement.scrollTop);
+}
+</script>
+</body>
+</html>
|