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

Side by Side Diff: third_party/WebKit/LayoutTests/imported/csswg-test/vendor-imports/mozilla/mozilla-central-reftests/flexbox/flexbox-min-width-auto-003-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 <html>
7 <head>
8 <meta charset="utf-8">
9 <title>CSS Reftest Reference</title>
10 <link rel="author" title="Daniel Holbert" href="mailto:dholbert@mozilla.com" >
11 <style>
12 .item {
13 /* Flex items have purple border: */
14 border: 2px dotted purple;
15 margin-bottom: 2px; /* (Just for spacing things out, visually) */
16 }
17
18 .small { width: 26px; }
19 .big { width: 80px; }
20
21 .item > * {
22 /* Flex items' contents are gray & fixed-size: */
23 background: gray;
24 height: 40px;
25 width: 80px;
26 }
27
28 .xvisible { overflow-x: visible; }
29 .xhidden { overflow-x: hidden; }
30 .xscroll { overflow-x: scroll; }
31 .xauto { overflow-x: auto; }
32 </style>
33 </head>
34 <body>
35 <div class="item big xvisible"><div></div></div>
36 <div class="item small xhidden"><div></div></div>
37 <div class="item small xscroll"><div></div></div>
38 <div class="item small xauto"><div></div></div>
39 </body>
40 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698