1
0
Fork 0
firefox/testing/web-platform/tests/css/css-text/altering-dom-crash.html
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

18 lines
464 B
HTML

<!DOCTYPE html>
<title>CSS Text Test: Altering the DOM generates empty text elements that cause line-breaking to crash</title>
<link rel="help" href="https://crbug.com/1128571">
<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>