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/slot-content-visibility-20-crash.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<link rel=author href="mailto:jarhar@chromium.org">
<style>
summary {
margin: 1px 1px 1px -1px;
}
* {
max-height: 0vh;
}
</style>
<script>
function jsfuzzer() {
document.documentElement.appendChild(document.querySelector('details'));
document.execCommand("selectAll");
document.querySelector('li').replaceChild(
document.querySelector('q'),
document.querySelector('div'));
document.caretRangeFromPoint(127,487);
}
</script>
<body onload=jsfuzzer()>
<li>
<div></div>
<details>
<summary></summary>
<q></q>
</details>
</li>