blob: 7d41f36f13cac8d2a90acdd53b2991ffd314cc0e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<html>
<head>
<style>
div { text-transform: capitalize }
div:first-letter { color: green; }
</style>
</head>
<body>
<p>
Test for <i><a href="http://bugs.webkit.org/show_bug.cgi?id=14545">http://bugs.webkit.org/show_bug.cgi?id=14545</a>
REGRESSION (r21854-r21869): Repro crash in LayoutBlockFlow::updateFirstLetter @ nola.com/rose/</i>.
</p>
<p>
The following lines should be identical:
</p>
<div>lorem ipsum</div>
<p><span style="color: green;">L</span>orem Ipsum</p>
</body>
</html>
|