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

Unified Diff: LayoutTests/css3/flexbox/flexbox-ignore-container-firstLetter.html

Issue 686173006: Ignore ::first-letter from ancestors in grids and flexboxes (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: New version fixing issues with ::before pseudo-element Created 6 years, 1 month 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
« no previous file with comments | « no previous file | LayoutTests/css3/flexbox/flexbox-ignore-container-firstLetter-expected.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/css3/flexbox/flexbox-ignore-container-firstLetter.html
diff --git a/LayoutTests/css3/flexbox/flexbox-ignore-container-firstLetter.html b/LayoutTests/css3/flexbox/flexbox-ignore-container-firstLetter.html
index 48aa5bbcb64fe3a097555e2406d835ef433ccd16..52939e01d1041a71013d45c0791d4f93b5be47eb 100644
--- a/LayoutTests/css3/flexbox/flexbox-ignore-container-firstLetter.html
+++ b/LayoutTests/css3/flexbox/flexbox-ignore-container-firstLetter.html
@@ -3,7 +3,7 @@
<link href="resources/flexbox.css" rel="stylesheet">
<style>
.container::first-letter { line-height: 100px; }
- .flexbox::first-letter { line-height: 200px; }
+ .flexboxFirsLetter::first-letter { line-height: 200px; }
leviw_travelin_and_unemployed 2014/11/05 06:55:36 Typo: "flexboxFirsLetter"
Manuel Rego 2014/11/05 08:13:00 Acknowledged.
p { line-height: 20px; }
</style>
@@ -12,6 +12,13 @@
<p>This test flex item should ignore container's firstLetter pseudo element.</p>
<div class="container">
+ <div class="flexbox flexboxFirsLetter">
+ <p data-expected-height=20>The first item.</p>
+ <p data-expected-height=20>The second item.</p>
+ </div>
+</div>
+
+<div class="container">
<div class="flexbox">
<p data-expected-height=20>The first item.</p>
<p data-expected-height=20>The second item.</p>
« no previous file with comments | « no previous file | LayoutTests/css3/flexbox/flexbox-ignore-container-firstLetter-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698