1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/reftests/floats/float-outside-block-push.html Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,25 @@ 1.4 +<!DOCTYPE HTML> 1.5 +<html lang="en"> 1.6 +<head> 1.7 + <title>CSS 2.1 Test Suite: float</title> 1.8 + <link rel="author" title="L. David Baron" href="http://dbaron.org/" /> 1.9 + <link rel="author" title="Mozilla Corporation" href="http://mozilla.com/" /> 1.10 + <link rel="help" href="http://www.w3.org/TR/CSS21/visuren.html#floats"/> 1.11 + <meta name="flags" content="" /> 1.12 + 1.13 +<style type="text/css"> 1.14 +#wrap {width:600px; border:1px solid;} 1.15 +.a {background:lime; color:#fff; width:80%;} 1.16 +.b {float:right; width:18%; background: cyan; color: #000; height:10em;} 1.17 +textarea {width: 100%; height:10em;} 1.18 +</style> 1.19 + 1.20 +<title>test</title> 1.21 +</head> 1.22 +<body> 1.23 +<div id="wrap"> 1.24 + <div class="b"></div> 1.25 + <div class="a"><textarea></textarea></div> 1.26 +</div> 1.27 +</body> 1.28 +</html>