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/display-list/1432553-1.html | |
parent | Initial commit. (diff) | |
download | thunderbird-upstream.tar.xz thunderbird-upstream.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/display-list/1432553-1.html | 66 |
1 files changed, 66 insertions, 0 deletions
diff --git a/layout/reftests/display-list/1432553-1.html b/layout/reftests/display-list/1432553-1.html new file mode 100644 index 0000000000..2605f9ef1e --- /dev/null +++ b/layout/reftests/display-list/1432553-1.html @@ -0,0 +1,66 @@ +<!DOCTYPE html> +<html class="reftest-wait"> +<head> +<meta http-equiv="content-type" content="text/html; charset=UTF-8"> +<meta charset="utf-8"> +<title>Retained display list test</title> +<style type="text/css"> +.back { + position: absolute; + left: 50px; + top: 50px; + height: 400px; + width: 400px; + + background: white; +} + +#parent { + position: fixed; + top: 0px; + left: 300px; + width: 200px; + height: 200px; + + border: none; + background-color: green; +} + +.translate { + transform: translateX(0px); +} + +#child { + position: fixed; +} + +.container { + position: absolute; + left: 0px; + top: 0px; + width: 600px; + height: 600px; + z-index: 1; +} +</style> +</head> +<body> +<div class="container"> + <div class="back"></div> + <div id="parent"> + <div id="child"></div> + </div> +</div> + +<script type="text/javascript"> +function doTest() { + document.getElementById("parent").classList.add("translate"); + document.documentElement.removeAttribute("class"); +} + +window.addEventListener("MozReftestInvalidate", doTest); + +// setTimeout(doTest, 1000); +</script> +</body> +</html> |