Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-contain/content-visibility/crashtests/div-in-hidden.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<link rel="author" title="Fujii Hironori" href="mailto:fujii@igalia.com">
<link rel="help" href="https://webkit.org/b/307963">
<style>
div {
width: 100px;
height: 100px;
}
.a {
background: green;
}
.b {
content-visibility: hidden;
}
.c {
background: red;
}
</style>
<div class=a>
<div class=b>
<div class=c>
</div>
</div>
</div>