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

Side by Side Diff: third_party/WebKit/LayoutTests/imported/csswg-test/vendor-imports/mozilla/mozilla-central-reftests/flexbox/flexbox-baseline-multi-line-vert-002.html

Issue 1705363002: Import Mozilla's flexbox tests from csswg-test (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: add test expectations for mac-specific failures Created 4 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 <!--
3 Any copyright is dedicated to the Public Domain.
4 http://creativecommons.org/publicdomain/zero/1.0/
5 -->
6 <!-- Testcase for how we compute the baseline of a vertical flex container
7 with several flex lines (wrapping in the reverse direction).
8 The spec says this about this case:
9 [Given that the first line has no baseline-aligned items:]
10 ...if the flex container has at least one flex item, and its
11 first flex item has a baseline parallel to the flex
12 container's main axis, the flex container's main-axis
13 baseline is that baseline.
14 -->
15 <html>
16 <head>
17 <title>CSS Test: Testing the baseline of a vertical flex container with multip le flex lines</title>
18 <link rel="author" title="Daniel Holbert" href="mailto:dholbert@mozilla.com">
19 <link rel="help" href="http://www.w3.org/TR/css-flexbox-1/#flex-baselines">
20 <link rel="match" href="flexbox-baseline-multi-line-vert-002-ref.html">
21 <meta charset="utf-8">
22 <style>
23 .flexContainer {
24 display: inline-flex;
25 flex-direction: column;
26 flex-wrap: wrap-reverse;
27 width: 40px;
28 height: 40px;
29 background: lightblue;
30 }
31 .flexContainer > * {
32 width: 20px;
33 height: 20px;
34 }
35
36 /* We'll make the second flex line not paint anything, so that the
37 reference case doesn't need to bother matching it. */
38 .flexContainer > *:nth-child(3),
39 .flexContainer > *:nth-child(4) {
40 visibility: hidden;
41 }
42
43 .smallFont {
44 font-size: 8px;
45 line-height: 8px;
46 }
47 .medFont {
48 font-size: 12px;
49 line-height: 12px;
50 }
51 .bigFont {
52 font-size: 16px;
53 line-height: 16px;
54 }
55 </style>
56 </head>
57 <body>
58 a
59 <!-- Flex containers with flex items that have a mix of baselines: -->
60 <div class="flexContainer">
61 <div class="medFont">b</div><div class="bigFont">c</div><div class="bigFont" >d</div><div class="medFont">e</div>
62 </div>
63
64 <div class="flexContainer">
65 <div class="bigFont">f</div><div class="smallFont">g</div><div class="medFon t">h</div><div class="bigFont">i</div>
66 </div>
67
68 <!-- Flex container with second line baseline-aligned
69 (shouldn't make a difference) -->
70 <div class="flexContainer">
71 <div class="smallFont">j</div><div class="bigFont">k</div><div class="bigFon t" style="align-self: baseline">l</div><div class="medFont" style="align-self: b aseline">m</div>
72 </div>
73 n
74
75 </body>
76 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698