Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-contain/content-visibility/content-visibility-027.html - WPT Dashboard Interop Dashboard
<!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="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>