gecko/layout/reftests/flexbox/flexbox-widget-flex-items-2-ref.html
Daniel Holbert 96708c6027 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

35 lines
905 B
HTML

<!DOCTYPE html>
<!--
Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/
-->
<html>
<head>
<style>
div.flexbox {
background: lightgray;
width: 400px;
height: 30px;
margin-bottom: 10px;
}
div.flexbox > * {
min-width: 350px;
outline: 1px dashed black;
margin: 0;
vertical-align: top;
}
</style>
</head>
<body>
<div class="flexbox"><input type="button"></div>
<div class="flexbox"><input type="checkbox"></div>
<div class="flexbox"><input type="file"></div>
<div class="flexbox"><input type="image"></div>
<div class="flexbox"><input type="password"></div>
<div class="flexbox"><input type="radio"></div>
<div class="flexbox"><input type="reset"></div>
<div class="flexbox"><input type="submit"></div>
<div class="flexbox"><input type="text"></div>
</body>
</html>