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 /testing/web-platform/tests/css/css-flexbox/relayout-image-load.html | |
parent | Initial commit. (diff) | |
download | firefox-upstream.tar.xz firefox-upstream.zip |
Adding upstream version 110.0.1.upstream/110.0.1upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'testing/web-platform/tests/css/css-flexbox/relayout-image-load.html')
-rw-r--r-- | testing/web-platform/tests/css/css-flexbox/relayout-image-load.html | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/css-flexbox/relayout-image-load.html b/testing/web-platform/tests/css/css-flexbox/relayout-image-load.html new file mode 100644 index 0000000000..30091c5681 --- /dev/null +++ b/testing/web-platform/tests/css/css-flexbox/relayout-image-load.html @@ -0,0 +1,36 @@ +<!DOCTYPE html> +<html> +<head> +<title>CSS Flexbox: Relayout after loading an image</title> +<link rel="help" href="https://drafts.csswg.org/css-flexbox/#resolve-flexible-lengths"> +<link rel="help" href="https://drafts.csswg.org/css-images-4/#image-values"> +<meta name="assert" content="This test ensures flexbox does a relayout after an image loads."> +<link href="support/flexbox.css" rel="stylesheet"> +<script src="/resources/testharness.js"></script> +<script src="/resources/testharnessreport.js"></script> +<script src="/resources/check-layout-th.js"></script> +</head> +<body> +<div id=log></div> +<p>Test passes if a green 100x100 image is rendered.</p> +<div id="test" class="flexbox"> + + <div class="flexbox"> + <img data-expected-width=100 data-expected-height=100 id="image" onload="imageLoaded()"> + </div> +</div> +<script> + +function changeImage() +{ + document.getElementById("image").src = "support/100x100-green.png"; +} +step_timeout(changeImage, 0); + +function imageLoaded() +{ + checkLayout('#test') +} +</script> +</body> +</html> |