summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-contain/content-visibility/content-visibility-resize-observer-no-error.html
blob: f323e606039e72a696d2de75eb0d43c7f9cab095 (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
<!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="help" href="https://drafts.csswg.org/css-contain/#content-visibility">
<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>