Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

<!DOCTYPE html>
<meta charset="utf-8">
<title>No crash when changing text node data with text-overflow ellipsis in size-contained element</title>
<link rel="help" href="https://crbug.com/40559894">
<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>