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

Side by Side Diff: third_party/WebKit/LayoutTests/imported/csswg-test/vendor-imports/mozilla/mozilla-central-reftests/flexbox/flexbox-whitespace-handling-001a-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 <!--
7 Reference case, with inline-blocks instead of flexbox/flex items,
8 with positioning done using margins.
9 -->
10 <html xmlns="http://www.w3.org/1999/xhtml">
11 <head>
12 <title>CSS Reftest Reference</title>
13 <link rel="author" title="Daniel Holbert" href="mailto:dholbert@mozilla.com" />
14 <style>
15 div { height: 100px; }
16 div.flexbox {
17 border: 1px dashed blue;
18 width: 200px;
19 }
20 div.a {
21 width: 30px;
22 background: lightgreen;
23 display: inline-block;
24 }
25 div.b {
26 width: 20px;
27 background: lightblue;
28 display: inline-block;
29 }
30 img {
31 width: 40px;
32 height: 100%;
33 }
34 </style>
35 </head>
36 <body>
37 <div class="flexbox">
38 <div class="a" style="margin-left: 85px"/>
39 </div>
40
41 <div class="flexbox">
42 <div class="a" style="margin-left: 37.5px"
43 /><div class="b" style="margin-left: 75px"/>
44 </div>
45
46 <div class="flexbox">
47 <img src="solidblue.png" style="margin-left: 30px"
48 /><img src="solidblue.png" style="margin-left: 60px"/>
49 </div>
50 </body>
51 </html>
52
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698