summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-contain/content-visibility/content-visibility-auto-nested-scroll-ref.html
blob: aad9b9b73efe854cb0324b55c461c51592cf7a00 (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
<!doctype HTML>
<html class="reftest-wait">
<meta charset="utf8">
<title>Content Visibility: content in nested `content-visibility: auto` element can be scrolled to</title>
<script src="/common/reftest-wait.js"></script>

<style>
#outer {
  width: 400px;
  height: 400px;
  contain: layout paint size;
}

#inner {
  position: relative;
  top: 100px;
  width: 100px;
  height: 100px;
}
</style>

<div style="height:100vh"></div>
<div id="outer" style="border:solid">
    <div id="inner" >content with content-visibility: auto</div>
</div>

<script>
function runTest() {
  inner.scrollIntoView();
  requestAnimationFrame(takeScreenshot);
}
window.onload = () => requestAnimationFrame(() => requestAnimationFrame(runTest));
</script>