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

Side by Side Diff: third_party/WebKit/LayoutTests/imported/csswg-test/vendor-imports/mozilla/mozilla-central-reftests/flexbox/flexbox-baseline-multi-line-horiz-001.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 horizontal flex container
7 with several flex lines.
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 horizontal flex container with mult iple 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-horiz-001-ref.html">
21 <meta charset="utf-8">
22 <style>
23 .flexContainer {
24 display: inline-flex;
25 flex-wrap: wrap;
26 width: 40px;
27 height: 40px;
28 background: lightblue;
29 }
30 .flexContainer > * {
31 width: 20px;
32 }
33
34 /* We'll make the second flex line not paint anything, so that the
35 reference case doesn't need to bother matching it. */
36 .flexContainer > *:nth-child(3),
37 .flexContainer > *:nth-child(4) {
38 visibility: hidden;
39 }
40
41 .smallFont {
42 font-size: 8px;
43 line-height: 8px;
44 }
45 .medFont {
46 font-size: 12px;
47 line-height: 12px;
48 }
49 .bigFont {
50 font-size: 16px;
51 line-height: 16px;
52 }
53 </style>
54 </head>
55 <body>
56 a
57 <!-- Flex containers with flex items that have a mix of baselines: -->
58 <div class="flexContainer">
59 <div class="medFont">b</div><div class="bigFont">c</div><div class="bigFont" >d</div><div class="medFont">e</div>
60 </div>
61
62 <div class="flexContainer">
63 <div class="bigFont">f</div><div class="smallFont">g</div><div class="medFon t">h</div><div class="bigFont">i</div>
64 </div>
65
66 <!-- Flex container with second line baseline-aligned
67 (shouldn't make a difference) -->
68 <div class="flexContainer">
69 <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>
70 </div>
71 n
72
73 </body>
74 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698