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

Unified Diff: third_party/WebKit/LayoutTests/fast/css/first-letter-to-non-block-container-expected.html

Issue 2650583003: Fix ::first-letter not to apply non-block containers (Closed)
Patch Set: Fix ListItem, add test Created 3 years, 11 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: third_party/WebKit/LayoutTests/fast/css/first-letter-to-non-block-container-expected.html
diff --git a/third_party/WebKit/LayoutTests/fast/css/first-letter-to-non-block-container-expected.html b/third_party/WebKit/LayoutTests/fast/css/first-letter-to-non-block-container-expected.html
new file mode 100644
index 0000000000000000000000000000000000000000..c98b5c23a32cb17c6cedcb51cf0b8483816daa49
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/fast/css/first-letter-to-non-block-container-expected.html
@@ -0,0 +1,10 @@
+<!DOCTYPE html>
+<style>
+.red {
+ color: red;
+}
+</style>
+<p>Tests pass if initial "R" are in red and "X" are in black.</p>
+<div><span class="red">R</span> first-letter applies in div.</div>
+<div>X first-letter do not apply if display: flex</div>
+<fieldset>X first-letter do not apply if display: flex, even in fieldset</fieldset>

Powered by Google App Engine
This is Rietveld 408576698