summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-contain/content-visibility/content-visibility-084.html
blob: 742b1d51899114952f6dbff65be228638b2682a0 (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
<!doctype HTML>
<html class="reftest-wait">
<meta charset="utf8">
<title>Content Visibility: anchor links prevented on hidden</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="spacer-and-container-ref.html">
<meta name="assert" content="anchor link scroll is prevented when the target is hidden">

<script src="/common/reftest-wait.js"></script>

<style>
.spacer {
  width: 150px;
  height: 3000px;
  background: lightblue;
}
#container {
  width: 150px;
  height: 150px;
  background: red;
}

.hidden {
  content-visibility: hidden;
}

#target {
  width: 100px;
  height: 100px;
}
</style>

<div class="spacer">Test passes if there is no red.</div>
<div id="container"><div id="target"></div></div>

<script>
function tryToScroll() {
  location.href += "#target";
  requestAnimationFrame(takeScreenshot);
}

function runTest() {
  container.classList.add("hidden");
  requestAnimationFrame(tryToScroll);
}

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