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

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: Patch for landing 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..57e89a0e2aab814d53c3d2776079ef28ffe2eb52 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; }
+ .flexboxFirstLetter::first-letter { line-height: 200px; }
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 flexboxFirstLetter">
+ <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