Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-text/altering-dom-crash.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<title>CSS Text Test: Altering the DOM generates empty text elements that cause line-breaking to crash</title>
<style>
body {
width: 5pt;
hyphens: none;
}
</style>
<body onload=jsfuzzer()>
<table id="table1">x</table>
<content contenteditable="plaintext-only">
</body>
<script>
function jsfuzzer() {
document.all[0].appendChild(table1);
}
</script>