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

Side by Side Diff: third_party/WebKit/LayoutTests/imported/csswg-test/vendor-imports/mozilla/mozilla-central-reftests/flexbox/flexbox-mbp-horiz-001-rtl-reverse-expected.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 <html xmlns="http://www.w3.org/1999/xhtml">
7 <head>
8 <title>CSS Reftest Reference</title>
9 <link rel="author" title="Daniel Holbert" href="mailto:dholbert@mozilla.com" />
10 <style>
11 div { height: 100px; border: 0; }
12 div.flexbox {
13 width: 200px;
14 }
15 div.a {
16 display: inline-block;
17 background: lightgreen;
18 border-style: dotted;
19 border-left-width: 2px;
20 border-right-width: 4px;
21 }
22 div.b {
23 display: inline-block;
24 background: yellow;
25 border-style: dashed;
26 border-left-width: 7px;
27 border-right-width: 3px;
28 }
29 div.c {
30 display: inline-block;
31 background: orange;
32 }
33 div.flexNone {
34 display: inline-block;
35 background: pink;
36 }
37 div.flexBasis {
38 display: inline-block;
39 background: gray;
40 }
41 div.spacer {
42 height: 15px;
43 background: purple;
44 }
45 </style>
46 </head>
47 <body>
48 <div class="flexbox">
49 <div class="a" style="width: 74px"/><div class="b" style="width: 110px"/>
50 </div>
51 <div class="flexbox">
52 <div class="a" style="width: 56.5px"/><div class="c" style="width: 137.5px "/>
53 </div>
54 <div class="flexbox">
55 <div class="a" style="width: 179px"/><div class="flexNone">
56 <div class="spacer" style="width: 15px"/></div>
57 </div>
58 <div class="flexbox">
59 <div class="b" style="width: 66px"/><div class="c" style="width: 124px"/>
60 </div>
61 <div class="flexbox">
62 <div class="b" style="width: 160px"/><div class="flexNone">
63 <div class="spacer" style="width: 30px"/></div>
64 </div>
65 <div class="flexbox">
66 <div class="a" style="width: 39px"/><div class="b" style="width: 40px"
67 /><div class="flexBasis" style="width: 20px"/><div class="c" style="width: 85px"/>
68 </div>
69 </body>
70 </html>
71
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698