27 lines
613 B
HTML
27 lines
613 B
HTML
<!doctype HTML>
|
|
<html>
|
|
<meta charset="utf8">
|
|
<title>Content Visibility: spacer and a container, scrolled to 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>
|
|
.spacer {
|
|
width: 150px;
|
|
height: 300vh;
|
|
background: lightblue;
|
|
}
|
|
#container {
|
|
width: 150px;
|
|
height: 150px;
|
|
background: green;
|
|
}
|
|
</style>
|
|
|
|
<div class="spacer"></div>
|
|
<div id="container">Test passes if this is on screen.</div>
|
|
|
|
<script>
|
|
onload = () => container.scrollIntoView();
|
|
</script>
|
|
</html>
|