Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(17)

Unified Diff: LayoutTests/fast/css/first-letter-punctuation.html

Issue 207553007: Apply the correct style to first-letter pseudo elements composed of different renderers (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Addressed comments from Eric: refactored code + more testing Created 6 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: LayoutTests/fast/css/first-letter-punctuation.html
diff --git a/LayoutTests/fast/css/first-letter-punctuation.html b/LayoutTests/fast/css/first-letter-punctuation.html
index 753f5be1a1af1f57aa9b22f4bef9352a09e5a949..ef7a861a72e3629816991528b74a5cd7ce046efb 100644
--- a/LayoutTests/fast/css/first-letter-punctuation.html
+++ b/LayoutTests/fast/css/first-letter-punctuation.html
@@ -5,7 +5,7 @@
div:first-letter
{
color: green;
- font-size: 36px;
+ font-size: 26px;
mario.prada 2014/03/27 14:12:39 I reduced the font size here to make sure the whol
}
</style>
</head>
@@ -16,8 +16,14 @@
<div>&nbsp;Test&nbsp;</div>
<div>(T)est</div>
+ <div>(Test)</div>
<div>&nbsp;(T)est</div>
+ <div>&nbsp;(Test)</div>
+
<div>&ldquo;T&rdquo;est</div>
+ <div>&ldquo;Test&rdquo;</div>
+ <div><q>T</q>est</div>
+ <div><q>Test</q></div>
mario.prada 2014/03/27 14:12:39 I added some more cases in this test too to make s
<div>&amp;Test</div>
<div>&nbsp;&amp;Test</div>

Powered by Google App Engine
This is Rietveld 408576698