float-outside-block-push-ref.html (502B)
1 <!DOCTYPE HTML> 2 <html lang="en"> 3 <head> 4 <title>Testcase, bug 472252</title> 5 6 <style type="text/css"> 7 #wrap {width:600px; border:1px solid;position:relative} 8 .a {background:lime; color:#fff; width:80%;} 9 .b {position:absolute; right:0; width:18%; background: cyan; color: #000; height:10em;} 10 textarea {box-sizing: border-box; width: 100%; height:10em;} 11 </style> 12 13 <title>test</title> 14 </head> 15 <body> 16 <div id="wrap"> 17 <div class="b"></div> 18 <div class="a"><textarea></textarea></div> 19 </div> 20 </body> 21 </html>