gecko/layout/reftests/flexbox/flexbox-resizeviewport-1-helper.html
Daniel Holbert 7e0081585f Bug 666041: Reftests for css3-flexbox. (tests-only)
--HG--
rename : layout/reftests/bugs/solidblue.png => layout/reftests/flexbox/solidblue.png
2012-09-29 23:42:29 -07:00

32 lines
691 B
HTML

<!--
Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/
-->
<!-- Helper-file for reftest flexbox-resizeviewport-1.xhtml
I'm intentionally using quirks-mode (no doctype), so that
a 100% height will work. -->
<html>
<head>
<style>
div.flexbox {
display: -moz-flex;
height: 100%;
border: 2px dashed black;
}
div.a {
-moz-flex: 1;
background: pink;
}
div.b {
-moz-flex: 1;
background: teal;
}
</style>
</head>
<body>
<div class="flexbox">
<div class="a"></div><div class="b"></div>
</div>
</body>
</html>