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

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

Issue 2707203005: Import csswg-test@ed79f8614481e97d61f17f41b65448c211d27c6f (Closed)
Patch Set: Created 3 years, 9 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 <meta charset="utf-8">
3 <title>CSS Test Reference</title>
4 <link rel="author" title="Emilio Cobos Álvarez" href="mailto:ecobos@igalia.com">
5 <style>
6 .container {
7 display: grid;
8 width: 300px;
9 height: 300px;
10 justify-items: center;
11 border: 2px solid purple;
12 }
13 .container > div {
14 width: 100px;
15 height: 100px;
16 background: blue;
17 justify-self: auto;
18 }
19 </style>
20 <p>Test passes if there's a blue square horizontally centered inside the box.</p >
21 <div class="container">
22 <div></div>
23 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698