Index: LayoutTests/fast/css/first-letter-punctuation-expected.html |
diff --git a/LayoutTests/fast/css/first-letter-punctuation-expected.html b/LayoutTests/fast/css/first-letter-punctuation-expected.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..dbd9da3499761a4a806bb4948185f1701e5ec042 |
--- /dev/null |
+++ b/LayoutTests/fast/css/first-letter-punctuation-expected.html |
@@ -0,0 +1,34 @@ |
+<!DOCTYPE html> |
+<html> |
+ <head> |
+ <style type="text/css"> |
+ .bigGreenText |
+ { |
+ color: green; |
+ font-size: 36px; |
+ } |
+ </style> |
+ </head> |
+ <body> |
+ <p>Test passes if all the T are green, as well as punctuation elements when they are adjacent to a letter (without spaces)</p> |
+ |
+ <div><span class="bigGreenText">T</span>est</div> |
+ <div><span class="bigGreenText"> T</span>est </div> |
+ |
+ <div><span class="bigGreenText">(T)</span>est</div> |
+ <div><span class="bigGreenText"> (T)</span>est</div> |
+ <div><span class="bigGreenText">“T”</span>est</div> |
+ |
+ <div><span class="bigGreenText">&T</span>est</div> |
+ <div><span class="bigGreenText"> &T</span>est</div> |
+ <div><span class="bigGreenText">T&</span>S<div> |
+ <div><span class="bigGreenText">T</span> & S<div> |
+ <div><span class="bigGreenText">T</span> & S<div> |
+ |
+ <div>« S »</div> |
+ <div>« S » </div> |
+ |
+ <div>• </div> |
+ <div> • </div> |
+ </body> |
+</html> |