blob: 2c0c643c307479b40e3ff4a18a8e97b05117c9fc [file] [log] [blame] [edit]
<!doctype HTML>
<html>
<meta charset="utf8">
<title>hidden=until-found does not paint</title>
<link rel="author" title="Vladimir Levin" href="mailto:[email protected]">
<link rel="help" href="https://html.spec.whatwg.org/multipage/interaction.html#attr-hidden-until-found">
<link rel="match" href="./resources/container-ref.html">
<meta name="assert" content="content-visibility subtrees are not painted">
<style>
#container {
width: 150px;
height: 150px;
background: lightblue;
}
#child {
width: 50px;
height: 50px;
background: lightgreen;
}
</style>
<div id=container hidden=until-found>
Text.
<div id=child></div>
<span>inline child</span>
</div>
</html>