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/invalidation/paintedlayer-recycling-8-ref.html | |
parent | Initial commit. (diff) | |
download | firefox-43a97878ce14b72f0981164f87f2e35e14151312.tar.xz firefox-43a97878ce14b72f0981164f87f2e35e14151312.zip |
Adding upstream version 110.0.1.upstream/110.0.1upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rw-r--r-- | layout/reftests/invalidation/paintedlayer-recycling-8-ref.html | 58 |
1 files changed, 58 insertions, 0 deletions
diff --git a/layout/reftests/invalidation/paintedlayer-recycling-8-ref.html b/layout/reftests/invalidation/paintedlayer-recycling-8-ref.html new file mode 100644 index 0000000000..6023ddefba --- /dev/null +++ b/layout/reftests/invalidation/paintedlayer-recycling-8-ref.html @@ -0,0 +1,58 @@ +<!DOCTYPE html> +<html lang="en"> +<head> +<meta http-equiv="content-type" content="text/html; charset=utf-8"> +<title>PaintedLayer recycling should use the right translation</title> +<style> +body { + overflow: hidden; + background-color: grey; +} + +.fixed { + position: fixed; + width: 800px; + height: 800px; +} + +.container { + position: relative; + top: 50px; + left: 50px; + width: 400px; + height: 400px; + z-index: 1; + pointer-events: none; + transform: scale(1.0); +} + +.not-transformed { + background-color: lightblue; + width: 200px; + height: 200px; + position: absolute; + top: 0px; + left: 0px; + z-index: 1; +} + +.transformed { + position: relative; + top: 50px; + left: 50px; + width: 200px; + height: 200px; + background: red; + transform: scale(1.5); +} +</style> +</head> +<body> + <div class="fixed"> + <div class="container"> + <div class="not-transformed"></div> + <div class="transformed"></div> + </div> + </div> +</body> +</html> |