Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / deprecated-flexbox / flex-hang.html
bloba323244cd214e484be9d8489d03ecdfe7fede5b2
1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
3 <html lang="en">
4 <head>
5 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
6 <title>untitled</title>
8 <style type="text/css" media="screen">
9 body
11 margin: 0;
12 overflow: hidden;
14 div
16 display: -webkit-box;
17 border: 1px solid black;
20 #container
22 height: 100%;
23 width: 100%;
24 -webkit-box-orient: vertical;
26 #top-row
28 -webkit-box-flex: 0.65;
29 -webkit-box-orient: horizontal;
32 #bottom-row
34 -webkit-box-flex: 0.35;
37 .top
41 .bottom
44 .left
46 width: 65%;
49 .right
51 width: 35%;
54 .left img
56 display: -webkit-box;
58 </style>
61 </head>
62 <body>
64 <div id="container">
66 <div id="top-row">
67 <div class="top left">
69 </div>
70 <div class="top right">
72 </div>
73 </div>
75 <div id="bottom-row">
76 <div class="bottom left">
78 </div>
79 <div class="bottom right">
81 </div>
82 </div>
84 </div>
86 </body>
87 </html>