diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 19:33:14 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 19:33:14 +0000 |
commit | 36d22d82aa202bb199967e9512281e9a53db42c9 (patch) | |
tree | 105e8c98ddea1c1e4784a60a5a6410fa416be2de /layout/reftests/invalidation/paintedlayer-recycling-8-ref.html | |
parent | Initial commit. (diff) | |
download | firefox-esr-36d22d82aa202bb199967e9512281e9a53db42c9.tar.xz firefox-esr-36d22d82aa202bb199967e9512281e9a53db42c9.zip |
Adding upstream version 115.7.0esr.upstream/115.7.0esr
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'layout/reftests/invalidation/paintedlayer-recycling-8-ref.html')
-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> |