summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-contain/content-visibility/content-visibility-082.html
blob: 3313ca0f650b8cf990bcb385a3f9d27def81f0f2 (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
<!doctype HTML>
<html>
<meta charset="utf8">
<title>CSS Content Visibility: focus selects content-visibility element</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="container-focus-ref.html">
<meta name="assert" content="The elements with content-visibility are still focusable">

<style>
#container {
  content-visibility: hidden;
  width: 150px;
  height: 150px;
  background: lightblue;
}
#child {
  width: 50px;
  height: 50px;
  background: lightgreen;
}
</style>

<p>Test passes if the light blue box below has focus.
<div id=container tabindex=0>
  <div id=child></div>
</div>

<script>
onload = () => container.focus();
</script>
</html>