diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 09:22:09 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 09:22:09 +0000 |
commit | 43a97878ce14b72f0981164f87f2e35e14151312 (patch) | |
tree | 620249daf56c0258faa40cbdcf9cfba06de2a846 /layout/reftests/layers/fixed-pos-scrolled-clip-layerize.html | |
parent | Initial commit. (diff) | |
download | firefox-upstream.tar.xz firefox-upstream.zip |
Adding upstream version 110.0.1.upstream/110.0.1upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'layout/reftests/layers/fixed-pos-scrolled-clip-layerize.html')
-rw-r--r-- | layout/reftests/layers/fixed-pos-scrolled-clip-layerize.html | 62 |
1 files changed, 62 insertions, 0 deletions
diff --git a/layout/reftests/layers/fixed-pos-scrolled-clip-layerize.html b/layout/reftests/layers/fixed-pos-scrolled-clip-layerize.html new file mode 100644 index 0000000000..806377335a --- /dev/null +++ b/layout/reftests/layers/fixed-pos-scrolled-clip-layerize.html @@ -0,0 +1,62 @@ +<!DOCTYPE html> +<html reftest-async-scroll + reftest-displayport-x="0" reftest-displayport-y="0" + reftest-displayport-w="800" reftest-displayport-h="2000" + reftest-async-scroll-x="0" reftest-async-scroll-y="200"> + +<title>position:fixed with scrolled clip should prerender everything and correctly move the clip</title> + +<style> + +body { + margin: 0; + height: 4000px; +} + +.blueBox { + margin: 10px; + width: 200px; + height: 200px; + box-sizing: border-box; + border: 1px solid blue; +} + +.absoluteClip { + position: absolute; + top: 300px; + left: 100px; + width: 200px; + height: 200px; + background: red; + clip: rect(auto auto auto auto); +} + +.fixed { + position: fixed; + top: 0; + right: 0; + bottom: 0; + left: 0; + background: linear-gradient(lime 300px, black 0); +} + +.absoluteCyanBox { + position: absolute; + top: 200px; + left: 400px; + width: 200px; + height: 200px; + box-sizing: border-box; + border: 1px solid cyan; +} + + +</style> + +<div class="blueBox" reftest-assigned-layer="page-background"></div> + +<div class="absoluteClip"> + <div class="fixed"></div> +</div> + +<div class="absoluteCyanBox" reftest-assigned-layer="page-background"></div> |