1
0
Fork 0
firefox/testing/web-platform/tests/css/css-highlight-api/painting/custom-highlight-dynamic-container-metrics-001.html
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

32 lines
1.1 KiB
HTML

<!DOCTYPE html>
<html class="reftest-wait">
<meta charset="UTF-8">
<title>CSS Highlight API Test: Highlights using container sizes update on container changes</title>
<link rel="help" href="https://drafts.csswg.org/css-highlight-api-1/">
<link rel="help" href="https://drafts.csswg.org/css-pseudo/#highlight-styling">
<link rel="help" href="https://drafts.csswg.org/css-conditional-5/#container-lengths">
<link rel="match" href="custom-highlight-dynamic-container-metrics-001-ref.html">
<meta name="assert" value="lengths depending on containers take the correct values in a universal highlight with no container when the container size changes">
<script src="/common/reftest-wait.js"></script>
<head>
<style>
iframe {
width: 200px;
height: 100px;
}
iframe.resize {
width: 400px;
height: 200px;
}
</style>
</head>
<iframe id="iframe" src="resources/iframe-container.html"></iframe>
<script>
function runtest() {
iframe.classList.add('resize');
requestAnimationFrame(() => takeScreenshot());
}
iframe.onload = runtest;
</script>
</html>