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

Side by Side Diff: LayoutTests/fast/regions/auto-size/autoheight-flexbox.html

Issue 159933010: Remove everything region-specific from LayoutTests. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 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
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <style>
5 .article {
6 -webkit-flow-into: article;
7 -webkit-font-smoothing: none;
8 font-family: Ahem;
9 font-size: 20px;
10 color: green;
11 }
12
13 .container {
14 position: absolute;
15 width: 100px;
16 display: -webkit-flex;
17 }
18
19 .cell {
20 -webkit-flow-from: article;
21 height: auto;
22 background: lime;
23 }
24 .red {
25 position: absolute;
26 display: block;
27 background-color: red;
28 width: 100px;
29 height: 40px;
30 }
31 </style>
32 </head>
33 <body>
34 <p> Test whether an auto-height region is laid out properly inside a fle xbox container with height auto.<br>
35 Test passes if you see a green rectangle.
36 </p>
37 <div class="article">
38 XXXXX<br>XXXXX
39 </div>
40 <div class="red">
41 </div>
42
43 <div class="container">
44 <div class="cell"></div>
45 </div>
46 </body>
47 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698