Thu, 15 Jan 2015 21:13:52 +0100
Remove forgotten relic of ABI crash risk averse overloaded method change.
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 correctly handle the "overflow" property on
7 a horizontal flex container. -->
8 <html>
9 <head>
10 <title>CSS Test: Testing 'overflow' property on a horizontal flex container, with contents not overflowing</title>
11 <link rel="author" title="Daniel Holbert" href="mailto:dholbert@mozilla.com">
12 <link rel="help" href="http://www.w3.org/TR/css3-flexbox/#flex-containers">
13 <link rel="match" href="flexbox-overflow-horiz-1-ref.html">
14 <style>
15 .flexContainer {
16 background: purple;
17 display: flex;
18 width: 70px;
19 height: 70px;
20 float: left;
21 margin-right: 5px;
22 }
23 .bigItem {
24 background: blue;
25 height: 200px;
26 flex: 3;
27 }
28 .smallItem {
29 background: teal;
30 margin-bottom: 10px;
31 flex: 1;
32 }
33 .scroll { overflow: scroll }
34 .auto { overflow: auto }
35 .hidden { overflow: hidden }
36 </style>
37 </head>
38 <body>
39 <div class="flexContainer"><!-- (overflow un-set) -->
40 <div class="bigItem"></div>
41 <div class="smallItem"></div>
42 </div>
43 <div class="flexContainer hidden">
44 <div class="bigItem"></div>
45 <div class="smallItem"></div>
46 </div>
47 <div class="flexContainer scroll">
48 <div class="bigItem"></div>
49 <div class="smallItem"></div>
50 </div>
51 <div class="flexContainer auto">
52 <div class="bigItem"></div>
53 <div class="smallItem"></div>
54 </div>
55 </body>
56 </html>