blob: 912cefd815de2b505993df82e69381f615702693 (
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
33
34
35
36
37
|
<!doctype HTML>
<html class="reftest-wait">
<meta charset="utf8">
<title>Content Visibility: auto in the viewport.</title>
<link rel="author" title="Vladimir Levin" href="mailto:vmpstr@chromium.org">
<link rel="help" href="https://drafts.csswg.org/css-contain/#content-visibility">
<link rel="match" href="content-visibility-027-ref.html">
<meta name="assert" content="content-visibility auto element in the viewport paints">
<meta name="assert" content="content-visibility auto element in the viewport does not have size containment">
<script src="/common/reftest-wait.js"></script>
<style>
div {
content-visibility: auto;
border: 1px solid black;
}
</style>
<div class=locked>
Test passes if there is a border around this text.
</div>
<script>
window.onload = requestAnimationFrame(() => {
requestAnimationFrame(() => {
requestAnimationFrame(() => {
takeScreenshot();
});
});
});
</script>
</html>
|