blob: 4a22623470e8c86a4d153da212034915db8b1f59 [file] [log] [blame]
<html>
<head>
<style>
div:first-letter { font-size: larger; color: green; }
div:before { content: "The "; }
</style>
<script>
function test()
{
document.body.offsetTop;
document.getElementById('target').style.fontSize = '24px';
}
</script>
</head>
<body onload="test()">
<p>
Test for <i><a href="http://bugs.webkit.org/show_bug.cgi?id=14221">http://bugs.webkit.org/show_bug.cgi?id=14221</a>
Repro crash (ASSERTION FAILED: oldText in LayoutBlockFlow::updateFirstLetter() during relayout of :before content with first-letter style)</i>.
</p>
<div id="target">
first letter is green and larger than the rest.
</div>
</body>
</html>