blob: 2c28f7d132a68e3c76b255220ade6bc8312c5bd8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
<!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-contain-3/#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>
|