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

Side by Side Diff: third_party/WebKit/LayoutTests/imported/csswg-test/vendor-imports/mozilla/mozilla-central-reftests/flexbox/flexbox-baseline-single-item-001a-expected.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 <!-- Reference case, using inline-block instead of inline-flex. -->
7 <html>
8 <head>
9 <title>CSS Reftest Reference</title>
10 <link rel="author" title="Daniel Holbert" href="mailto:dholbert@mozilla.com">
11 <meta charset="utf-8">
12 <style>
13 .flexContainer {
14 display: inline-block;
15 height: 16px;
16 width: 16px;
17 background: purple;
18 border: 0px dotted black;
19 /* (Elements that want a border will set their border-width.) */
20 }
21 </style>
22 </head>
23 <body>
24 A
25 <div class="flexContainer">a</div>
26 <div class="flexContainer" style="padding-bottom: 20px">a</div>
27 <div class="flexContainer" style="padding: 10px">a</div>
28 <div class="flexContainer" style="border-width: 3px">a</div>
29 <div class="flexContainer" style="border-bottom-width: 4px">a</div>
30 </body>
31 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698