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

Side by Side Diff: third_party/WebKit/LayoutTests/imported/csswg-test/vendor-imports/mozilla/mozilla-central-reftests/flexbox/flexbox-overflow-horiz-002.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 <!-- This testcase checks that we honor "align-items" on a horizontal
7 flex container that has "overflow: hidden". We use a huge border on
8 one of the flex items, large enough that it overflows the container,
9 to be sure that "overflow: hidden" is actually applying. -->
10 <html>
11 <head>
12 <title>CSS Test: Testing 'overflow' property on a horizontal flex container, w ith 'align-items: center'</title>
13 <link rel="author" title="Daniel Holbert" href="mailto:dholbert@mozilla.com">
14 <link rel="help" href="http://www.w3.org/TR/css-flexbox-1/#flex-containers">
15 <link rel="match" href="flexbox-overflow-horiz-002-ref.html">
16 <style>
17 .flexContainer {
18 background: purple;
19 display: flex;
20 align-items: center;
21 width: 70px;
22 height: 70px;
23 float: left;
24 margin-right: 5px;
25 }
26 .bigItem {
27 background: blue;
28 height: 10px;
29 /* Tall border (taller than our container): */
30 border: solid coral;
31 border-width: 50px 2px;
32 flex: 3;
33 }
34 .smallItem {
35 background: teal;
36 height: 20px;
37 flex: 1;
38 }
39 .hidden { overflow: hidden }
40 </style>
41 </head>
42 <body>
43 <div class="flexContainer"><!-- (overflow un-set) -->
44 <div class="bigItem"></div>
45 <div class="smallItem"></div>
46 </div>
47 <div class="flexContainer hidden">
48 <div class="bigItem"></div>
49 <div class="smallItem"></div>
50 </div>
51 </body>
52 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698