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/crashtests/change-text-node-data-ellipsis.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<meta charset="utf-8">
<title>No crash when changing text node data with text-overflow ellipsis in size-contained element</title>
<style>
#test {
width: 100px;
height: 50px;
overflow: hidden;
text-overflow: ellipsis;
line-height: 1;
white-space: nowrap;
contain: layout size;
}
</style>
<div id="test">Hellowooooorld!</div>
<script>
document.body.offsetLeft;
document.getElementById('test').childNodes[0].data = "new text";
</script>