Files
servo/tests/wpt/css-tests/css-flexbox-1_dev/html/reference/flexbox-basic-textarea-horiz-001-ref.htm

57 lines
1.4 KiB
HTML

<!DOCTYPE html>
<!--
Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/
--><html>
<head>
<title>CSS Reftest Reference</title>
<link rel="author" title="Daniel Holbert" href="mailto:dholbert@mozilla.com">
<style>
div.flexbox {
width: 200px;
background: lightgreen;
margin-bottom: 5px;
line-height: 8px;
}
textarea {
width: 10px;
height: 20px;
background: white;
border-radius: 0;
border: 1px dotted green;
padding: 0;
}
</style>
</head>
<body>
<div class="flexbox">
<textarea></textarea>
</div>
<div class="flexbox" style="height: 24px">
some words
<textarea style="float:right"></textarea>
</div>
<div class="flexbox">
<textarea style="width: 122.5px"></textarea><textarea style="width: 73.5px"></textarea>
</div>
<div class="flexbox">
<textarea style="width: 93px"></textarea><textarea style="width: 103px"></textarea>
</div>
<div class="flexbox">
<textarea style="width: 114px"></textarea><textarea style="width: 82px"></textarea>
</div>
<div class="flexbox">
<textarea style="width: 106px"></textarea><textarea style="width: 90px"></textarea>
</div>
<div class="flexbox">
<textarea style="width: 46px"></textarea><textarea style="width: 150px"></textarea>
</div>
</body>
</html>