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-resize-observer-no-error.html - WPT Dashboard Interop Dashboard
<!doctype html>
<meta charset="utf8">
<title>Content Visibility: resize observer interaction</title>
<link rel="author" title="Vladimir Levin" href="mailto:vmpstr@chromium.org">
<link rel="match" href="content-visibility-resize-observer-no-error-ref.html">
<meta name="assert" content="the test doesn't cause resize observer to produce an error">
<script>
addEventListener('error', () => {
document.documentElement.style.background = "red";
});
</script>
<style>
div {
contain-intrinsic-size: auto 200px;
content-visibility: auto;
min-height: 50px;
background: blue;
}
</style>
<span>There should be no red color on this page.</span>
<span><div></div></span>
<div></div>
<script>
new ResizeObserver(() => {});
</script>