Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / css-grid-layout / named-grid-areas-dynamic-with-media-query-expected.html
blob9bcdf86cc3611b2d2cd3a43d38a366e54471b64a
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <style type="text/css">
5 .one { background-color: beige; width: 50%; }
6 .two { background-color: antiquewhite; width: 25%; }
7 .three { background-color: bisque; width: 25%; }
8 .one, .two, .three { min-height: 100px; float: left; }
9 </style>
10 <body>
11 <p>The test passes if you see 3 blocks bellow arranged on a single row</p>
12 <div class="one"></div>
13 <div class="two"></div>
14 <div class="three"></div>
15 </body>