+2007-06-04 Rob Buis <buis@kde.org>
+
+ Reviewed by Hyatt.
+
+ Test for:
+ http://bugs.webkit.org/show_bug.cgi?id=6170
+ CSS1: Properties for :first-letter aren't recalculated on color change
+
+ * fast/css/first-letter-recalculation-expected.checksum: Added.
+ * fast/css/first-letter-recalculation-expected.png: Added.
+ * fast/css/first-letter-recalculation-expected.txt: Added.
+ * fast/css/first-letter-recalculation.html: Added.
+
2007-05-31 Sam Weinig <sam@webkit.org>
Reviewed by Adam.
--- /dev/null
+layer at (0,0) size 800x600
+ RenderView at (0,0) size 800x600
+layer at (0,0) size 800x84
+ RenderBlock {HTML} at (0,0) size 800x84
+ RenderBody {BODY} at (8,16) size 784x52
+ RenderBlock {P} at (0,0) size 784x18
+ RenderInline {A} at (0,0) size 29x18 [color=#0000FF]
+ RenderInline (generated) at (0,0) size 10x18
+ RenderText {#text} at (0,0) size 10x18
+ text run at (0,0) width 10: "F"
+ RenderText {#text} at (10,0) size 19x18
+ text run at (10,0) width 19: "irst"
+ RenderText {#text} at (29,0) size 190x18
+ text run at (29,0) width 190: " letter should be bold and blue"
+ RenderBlock {P} at (0,34) size 784x18
+ RenderInline (generated) at (0,0) size 12x18
+ RenderText {#text} at (0,0) size 12x18
+ text run at (0,0) width 12: "H"
+ RenderText {#text} at (12,0) size 616x18
+ text run at (12,0) width 616: "ere the first letter should be bold and black, but with Safari build 416.13 it is blue. See bug #6170."
--- /dev/null
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+ <head>
+ <title>CSS 2.1 Test Suite: Testing first letter styles</title>
+ <link rel="help" href="http://www.w3.org/TR/CSS21/...#..."/>
+ <style type="text/css">
+ a
+{
+ color: blue;
+}
+
+p:first-letter
+{
+ font-weight: bold;
+}
+ </style>
+ </head>
+ <body>
+ <p><a href="test.html">First</a> letter should be bold and blue</p>
+ <p>Here the first letter should be bold and black, but with Safari build 416.13 it is blue. See bug #6170.</p>
+ </body>
+</html>
+2007-06-04 Rob Buis <buis@kde.org>
+
+ Reviewed by Hyatt.
+
+ http://bugs.webkit.org/show_bug.cgi?id=6170
+ CSS1: Properties for :first-letter aren't recalculated on color change
+
+ Mark styles with first-letter as unique.
+
+ * css/cssstyleselector.cpp:
+ (WebCore::CSSStyleSelector::styleForElement):
+
2007-06-01 Anders Carlsson <acarlsson@apple.com>
Reviewed by David Harrison.