Index: LayoutTests/fast/css/first-letter-expected.html |
diff --git a/LayoutTests/fast/css/first-letter-expected.html b/LayoutTests/fast/css/first-letter-expected.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..5b57050623412d7e1e2b2276c9738312a82c8fc2 |
--- /dev/null |
+++ b/LayoutTests/fast/css/first-letter-expected.html |
@@ -0,0 +1,12 @@ |
+<!DOCTYPE html> |
+<style> |
+.first { color: green; font-size: 2em; } |
+.underline { text-decoration: underline; } |
+#a { color: green; } |
+ </style> |
+This tests various first letter combinations. In each case the first letter |
+should be larger and green. |
+<div class="target"><e class="first">L</e>orem</div> |
+<div class="target underline"><span><span class="first">I</span>psum</span></div> |
+<div class="target"><e class='underline'><span class="first">C</span>arpe </e><e class="underline">Diem</e></div> |
+<div class="target"><e class='underline'><span class="first">F</span>oo </e>bar</div> |