Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /shadow-dom/crashtests/character-data-set-data-crash.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<meta charset="utf-8">
<title>Setting CharacterData.data while slot distribution is dirty should not crash</title>
<div id="host">XXX</div>
<script>
document.body.offsetTop;
var root = host.attachShadow({mode: "open"});
root.innerHTML = "<slot></slot>";
host.firstChild.data = " ";
</script>