Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-pseudo/chrome-first-letter-inside-replaced-crash.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<title>Chrome issue 1370386</title>
<style>
#fl::first-letter {
float: right;
}
</style>
<body>
<div id="outer">
<div style="display:table-column;float:left">
<span id="fl" style="display:inline-block">x</span>
</div>
</div>
</body>
<script>
document.body.offsetTop;
outer.style.content = "url(data:text/plain,x)";
fl.firstChild.remove();
document.body.offsetTop;
</script>