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

Side by Side Diff: third_party/WebKit/LayoutTests/external/csswg-test/css-display-3/display-contents-alignment-001.html

Issue 2707203005: Import csswg-test@ed79f8614481e97d61f17f41b65448c211d27c6f (Closed)
Patch Set: Created 3 years, 10 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
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/external/csswg-test/css-display-3/display-contents-alignment-001-expected.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <meta charset="utf-8">
3 <title>CSS Test: flex container align-items is used for flex item regardless of intermediate display: contents ancestors</title>
4 <link rel="author" title="Emilio Cobos Álvarez" href="mailto:ecobos@igalia.com">
5 <link rel="help" href="https://drafts.csswg.org/css-display-3/#valdef-display-co ntents">
6 <link rel="help" href="https://drafts.csswg.org/css-align/#align-items-property" >
7 <link rel="match" href="display-contents-alignment-001-ref.html">
8 <style>
9 .container {
10 display: flex;
11 width: 300px;
12 height: 300px;
13 align-items: center;
14 border: 2px solid purple;
15 }
16 .contents {
17 display: contents;
18 align-items: flex-start;
19 }
20 .contents > div {
21 width: 100px;
22 height: 100px;
23 background: blue;
24 align-self: auto;
25 }
26 </style>
27 <p>Test passes if there's a blue square vertically centered inside the box.</p>
28 <div class="container">
29 <div class="contents">
30 <div></div>
31 </div>
32 </div>
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/external/csswg-test/css-display-3/display-contents-alignment-001-expected.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698