summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/fast/deprecated-flexbox/006.html
blob: 85e6c9ed069105b4010b86bd67a999c98285f429 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<html>
<head>
<style>
div.box {
  height: 100px;
  background-color:green;
  display: -moz-box;
  display: -webkit-box;
  display: box;
}

</style>
</head>
<body>
You should see a green rectangle below that is 100 pixels tall and that fills the width of the content area.  If you see any red, then the test has failed.  

<div style="background-color:red;height:100px">
<div class="box"></div></div></div>
</body>
</html>