diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 01:47:29 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 01:47:29 +0000 |
commit | 0ebf5bdf043a27fd3dfb7f92e0cb63d88954c44d (patch) | |
tree | a31f07c9bcca9d56ce61e9a1ffd30ef350d513aa /layout/reftests/margin-collapsing/block-overflow-5b-dyn.html | |
parent | Initial commit. (diff) | |
download | firefox-esr-0ebf5bdf043a27fd3dfb7f92e0cb63d88954c44d.tar.xz firefox-esr-0ebf5bdf043a27fd3dfb7f92e0cb63d88954c44d.zip |
Adding upstream version 115.8.0esr.upstream/115.8.0esr
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'layout/reftests/margin-collapsing/block-overflow-5b-dyn.html')
-rw-r--r-- | layout/reftests/margin-collapsing/block-overflow-5b-dyn.html | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/layout/reftests/margin-collapsing/block-overflow-5b-dyn.html b/layout/reftests/margin-collapsing/block-overflow-5b-dyn.html new file mode 100644 index 0000000000..61b6423c2d --- /dev/null +++ b/layout/reftests/margin-collapsing/block-overflow-5b-dyn.html @@ -0,0 +1,35 @@ +<!DOCTYPE html> +<html class="reftest-wait"> +<head> +<style type="text/css"> +#separator-top { + height: 20px; + margin-bottom: 10px; + background-color: green; +} +#overflow { + overflow: scroll; + height: 40px; + margin: 20px 0; + background-color: green; +} +#separator-bottom { + height: 20px; + margin-top: 10px; + background-color: green; +} +</style> +<script type="text/javascript"> +function test() { + document.getElementById('overflow').style.overflow = 'hidden'; + document.documentElement.removeAttribute('class'); +} +document.addEventListener('MozReftestInvalidate', test); +</script> +</head> +<body> +<div id="separator-top"></div> +<div id="overflow"></div> +<div id="separator-bottom"></div> +</body> +</html> |