Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / deprecated-flexbox / 026.html
blobbac8f6e044da5a07fe36fce346b49a3c9c5f26e1
1 <style type="text/css">
2 #file {
3 display: -moz-box;
4 display: -webkit-box;
5 display: box;
6 background-color: blue;
7 width: 300px;
8 height: 100px;
11 #but {
12 -moz-box-flex: 2;
13 -webkit-box-flex: 2;
14 box-flex: 2;
15 height: 100px;
16 background-color: red;
17 max-width: 400px;
18 min-width: 400px;
21 #name {
22 -moz-box-flex: 3;
23 -webkit-box-flex: 3;
24 box-flex: 3;
25 height: 100px;
26 background-color: green;
28 </style>
29 <div id="file"><div id="but">Some text</div><div id="name">Some more text</div></div>