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

Side by Side Diff: third_party/WebKit/LayoutTests/imported/csswg-test/vendor-imports/mozilla/mozilla-central-reftests/flexbox/flexbox-mbp-horiz-001-reverse.xhtml

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 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Any copyright is dedicated to the Public Domain.
4 http://creativecommons.org/publicdomain/zero/1.0/
5 -->
6 <!-- Testcase with borders on flex items, and "flex-direction: row-reverse" to
7 reverse the flex container's main axis. -->
8 <html xmlns="http://www.w3.org/1999/xhtml">
9 <head>
10 <title>CSS Test: Testing borders on flex items in a row-reverse horizontal f lex container</title>
11 <link rel="author" title="Daniel Holbert" href="mailto:dholbert@mozilla.com" />
12 <link rel="help" href="http://www.w3.org/TR/css-flexbox-1/#layout-algorithm" />
13 <link rel="match" href="flexbox-mbp-horiz-001-reverse-ref.xhtml"/>
14 <style>
15 div { height: 100px; border: 0; }
16 div.flexbox {
17 width: 200px;
18 font-size: 10px;
19 display: flex;
20 flex-direction: row-reverse;
21 }
22 div.a {
23 flex: 1 0 24px;
24 background: lightgreen;
25 border-style: dotted;
26 border-left-width: 2px;
27 border-right-width: 4px;
28 }
29 div.b {
30 flex: 2 0 10px;
31 background: yellow;
32 border-style: dashed;
33 border-left-width: 7px;
34 border-right-width: 3px;
35 }
36 div.c {
37 flex: 3 0 40px;
38 background: orange;
39 }
40 div.flexNone {
41 flex: none;
42 background: pink;
43 }
44 div.flexBasis {
45 flex: 0 0 20px;
46 background: gray;
47 }
48 div.spacer {
49 display: inline-block;
50 width: 15px;
51 height: 15px;
52 background: purple;
53 }
54 </style>
55 </head>
56 <body>
57 <div class="flexbox"><div class="a"></div><div class="b"/></div>
58 <div class="flexbox"><div class="a"/><div class="c"/></div>
59 <div class="flexbox"><div class="a"/>
60 <div class="flexNone"><div class="spacer"/></div>
61 </div>
62 <div class="flexbox"><div class="b"/><div class="c"/></div>
63 <div class="flexbox"><div class="b"/>
64 <div class="flexNone"><div class="spacer"/><div class="spacer"/></div>
65 </div>
66
67 <div class="flexbox">
68 <div class="a"/><div class="b"/><div class="flexBasis"/><div class="c"/>
69 </div>
70 </body>
71 </html>
72
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698