summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/editing/the-hidden-attribute/hidden-until-found-007.html
blob: 7b11a92cc93940d99769804951ad3fb6c3929094 (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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<!doctype HTML>

<html class="reftest-wait">
<meta charset="utf8">
<title>hidden=until-found + focus</title>
<link rel="author" title="Vladimir Levin" href="mailto:vmpstr@chromium.org">
<link rel="help" href="https://github.com/WICG/display-locking">
<link rel="match" href="./resources/spacer-and-container-ref.html">
<meta name="assert" content="focus does not scroll or focus element under hidden=until-found">
<script src="/common/reftest-wait.js"></script>

<style>
.spacer {
  width: 150px;
  height: 3000px;
  background: lightblue;
}
#container {
  width: 150px;
  height: 150px;
  background: lightblue;
}
#target {
  position: relative;
  top: 75px;

  width: 50px;
  height: 50px;
  background: red;
}
</style>

<div class=spacer></div>
<div id=container hidden=until-found>
  <div id=target tabindex=0></div>
</div>

<script>
function runTest() {
  document.getElementById("target").focus();
  requestAnimationFrame(takeScreenshot);
}

window.onload = requestAnimationFrame(() => {
  requestAnimationFrame(() => {
    requestAnimationFrame(() => {
      runTest();
    });
  });
});
</script>
</html>