Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/selectors/has-display-none-checked.html - WPT Dashboard Interop Dashboard
<!doctype html>
<html class="reftest-wait">
<meta charset="utf-8">
<title>:has() invalidation inside display: none subtree</title>
<link rel="author" href="mailto:emilio@crisal.io" title="Emilio Cobos Álvarez">
<link rel="match" href="has-display-none-checked-ref.html">
<style>
body:has(input:checked) #fail {
display: none;
}
body:not(:has(input:checked)) #pass {
display: none;
}
</style>
<div style="display: none">
<input type="checkbox" id="on">
</div>
<div id="fail">FAIL</div>
<div id="pass">PASS</div>
<script>
document.addEventListener("TestRendered", function() {
document.querySelector("input").checked = true;
document.documentElement.className = "";
});
</script>