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

Side by Side Diff: third_party/WebKit/LayoutTests/imported/csswg-test/css-display-3/display-contents-inline-flex-001.html

Issue 2450093005: Support display: contents for elements, first-line and first-letter pseudos. (Closed)
Patch Set: Allow text as child of the LayoutView, since it can happen with display: contents Created 4 years 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 <meta charset="utf-8">
3 <title>CSS Test: CSS display: contents in inline-flex layout</title>
4 <link rel="author" title="Mats Palmgren" href="https://bugzilla.mozilla.org/show _bug.cgi?id=907396">
5 <link rel="author" title="Emilio Cobos Álvarez" href="mailto:ecobos@igalia.com">
6 <link rel="help" href="https://drafts.csswg.org/css-display-3/#valdef-display-co ntents">
7 <link rel="match" href="display-contents-inline-flex-001-ref.html">
8 <link rel="stylesheet" href="support/acid.css">
9 <div style="color: red">
10 <div class="iflex"><div class="contents c2">
11 0
12 </div></div>
13 <div class="iflex"><div class="contents c2">
14 0
15 <div class="contents c1">1</div>
16 2
17 </div></div>
18 <div class="iflex"><div class="contents c2">
19 0
20 <div class="c1">1</div>
21 2
22 </div></div>
23 <div class="iflex c3">
24 0
25 <div class="contents c2"><div class="c1">1</div></div>
26 2
27 </div>
28 <div class="iflex c3">
29 <div class="contents c2">0</div>
30 <div class="contents c2"><div class="c1">1</div></div>
31 <div class="contents c2">2</div>
32 </div>
33 <div class="iflex c3">
34 <div class="inline">0</div>
35 <div class="contents"><div class="inline c1">1</div></div>
36 <div class="inline">2</div>
37 </div>
38 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698