blob: 402b689010d320277b20d73da16958d1c54fc764 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<!doctype HTML>
<html>
<meta charset="utf8">
<title>CSS Content Visibility: container (reference)</title>
<link rel="author" title="Vladimir Levin" href="mailto:vmpstr@chromium.org">
<link rel="help" href="https://drafts.csswg.org/css-contain/#content-visibility">
<style>
#container {
width: 150px;
height: 150px;
background: lightblue;
}
</style>
<p>Test passes if the light blue box below has focus.
<div id=container tabindex=0></div>
<script>
onload = () => container.focus();
</script>
|