diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 17:32:43 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 17:32:43 +0000 |
commit | 6bf0a5cb5034a7e684dcc3500e841785237ce2dd (patch) | |
tree | a68f146d7fa01f0134297619fbe7e33db084e0aa /layout/reftests/invalidation/paintedlayer-recycling-8.html | |
parent | Initial commit. (diff) | |
download | thunderbird-6bf0a5cb5034a7e684dcc3500e841785237ce2dd.tar.xz thunderbird-6bf0a5cb5034a7e684dcc3500e841785237ce2dd.zip |
Adding upstream version 1:115.7.0.upstream/1%115.7.0upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rw-r--r-- | layout/reftests/invalidation/paintedlayer-recycling-8.html | 80 |
1 files changed, 80 insertions, 0 deletions
diff --git a/layout/reftests/invalidation/paintedlayer-recycling-8.html b/layout/reftests/invalidation/paintedlayer-recycling-8.html new file mode 100644 index 0000000000..b72371b795 --- /dev/null +++ b/layout/reftests/invalidation/paintedlayer-recycling-8.html @@ -0,0 +1,80 @@ +<!DOCTYPE html> +<html lang="en" class="reftest-wait"> +<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; +} + +.not-transformed { + background-color: blue; + 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> +<script type="text/javascript"> +function end() { + document.documentElement.removeAttribute("class"); +} + +function runAfterNextPaint(cb) { + requestAnimationFrame(() => requestAnimationFrame(cb)) +} + +function change() { + document.querySelector(".not-transformed").style["background-color"] = "lightblue"; + runAfterNextPaint(end); +} + +function doTest() { + document.querySelector(".container").style.transform = "scale(1.0)"; + runAfterNextPaint(change); +} + +document.addEventListener("MozReftestInvalidate", doTest); + +//setTimeout(doTest, 5000); +</script> +</html> |