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

Side by Side Diff: LayoutTests/fast/css-grid-layout/grid-item-first-letter-valid.html

Issue 440233002: [CSS Grid Layout] Ignore ::first-letter pseudo-element (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 4 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 unified diff | Download patch
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <html>
3 <link href="resources/grid.css" rel="stylesheet">
4 <style>
5 .item::first-letter { line-height: 100px; }
6 </style>
7
8 <script src="../../resources/check-layout.js"></script>
9 <body onload="checkLayout('.grid'); checkLayout('.inline-grid');">
10 <p>This test grid item's first-letter pseudo-element should be valid.</p>
11
12 <div class="grid">
13 <div class="item" data-expected-height=100>The first item.</div>
14 <div class="item" data-expected-height=100>The second item.</div>
15 </div>
16
17 <div class="inline-grid">
18 <div class="item" data-expected-height=100>The first item.</div>
19 <div class="item" data-expected-height=100>The second item.</div>
20 </div>
21
22 </body>
23 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698