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