diff options
Diffstat (limited to 'gfx/layers/apz/test/reftest/pinch-zoom-position-sticky-ref.html')
-rw-r--r-- | gfx/layers/apz/test/reftest/pinch-zoom-position-sticky-ref.html | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/gfx/layers/apz/test/reftest/pinch-zoom-position-sticky-ref.html b/gfx/layers/apz/test/reftest/pinch-zoom-position-sticky-ref.html new file mode 100644 index 0000000000..c430b532df --- /dev/null +++ b/gfx/layers/apz/test/reftest/pinch-zoom-position-sticky-ref.html @@ -0,0 +1,27 @@ +<!DOCTYPE html> +<html reftest-resolution="1.5"> +<head> + <meta name="viewport" content="width=device-width"> + <style> + body { + margin: 0; + height: 2000px; + overflow: hidden; + } + #tall { + height: 100vh; + } + #sticky { + position: absolute; + bottom: 0; + width: 100%; + height: 500px; + background: repeating-linear-gradient(90deg, transparent, transparent 20px, black 20px, black 40px); + } + </style> +</head> +<body> + <div id="tall"></div> + <div id="sticky"></div> +</body> +</html> |