summaryrefslogtreecommitdiffstats
path: root/layout/reftests/backgrounds/background-repeat-large-area.html
diff options
context:
space:
mode:
Diffstat (limited to 'layout/reftests/backgrounds/background-repeat-large-area.html')
-rw-r--r--layout/reftests/backgrounds/background-repeat-large-area.html42
1 files changed, 42 insertions, 0 deletions
diff --git a/layout/reftests/backgrounds/background-repeat-large-area.html b/layout/reftests/backgrounds/background-repeat-large-area.html
new file mode 100644
index 0000000000..0c9356382f
--- /dev/null
+++ b/layout/reftests/backgrounds/background-repeat-large-area.html
@@ -0,0 +1,42 @@
+<!--
+ Any copyright is dedicated to the Public Domain.
+ http://creativecommons.org/publicdomain/zero/1.0/
+-->
+<!DOCTYPE html>
+<html lang="en" class="reftest-wait">
+<meta charset="utf-8">
+<title>Make sure that repeated background images are painted even at extreme scroll positions</title>
+<!-- See https://bugzilla.mozilla.org/show_bug.cgi?id=671302 -->
+
+<style>
+
+html {
+ background-image: url(green-8x20-blue-8x20-vertical.png);
+ overflow: hidden;
+}
+
+html, body {
+ margin: 0;
+}
+
+body {
+ height: 100000px;
+}
+
+div {
+ height: 1000px;
+ background-color: red;
+}
+
+</style>
+
+<div></div>
+
+<script>
+
+window.addEventListener("MozReftestInvalidate", function () {
+ document.documentElement.scrollTop = 16 * 3000; // = 48000 > 32768
+ document.documentElement.removeAttribute("class");
+});
+
+</script>