1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/reftests/w3c-css/submitted/flexbox/flexbox-basic-textarea-vert-1-ref.xhtml Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,68 @@ 1.4 +<?xml version="1.0" encoding="UTF-8"?> 1.5 +<!-- 1.6 + Any copyright is dedicated to the Public Domain. 1.7 + http://creativecommons.org/publicdomain/zero/1.0/ 1.8 +--> 1.9 +<html xmlns="http://www.w3.org/1999/xhtml"> 1.10 + <head> 1.11 + <title>CSS Reftest Reference</title> 1.12 + <link rel="author" title="Daniel Holbert" href="mailto:dholbert@mozilla.com"/> 1.13 + <style> 1.14 + div.flexbox { 1.15 + height: 200px; 1.16 + width: 22px; 1.17 + float: left; 1.18 + margin-right: 10px; 1.19 + background: lightgreen; 1.20 + line-height: 0; 1.21 + } 1.22 + textarea { 1.23 + width: 20px; 1.24 + height: 10px; 1.25 + background: white; 1.26 + border-radius: 0; 1.27 + border: 1px dotted green; 1.28 + margin: 0; 1.29 + padding: 0; 1.30 + } 1.31 + </style> 1.32 + </head> 1.33 + <body> 1.34 + <div class="flexbox"> 1.35 + <textarea/> 1.36 + </div> 1.37 + 1.38 + <div class="flexbox"> 1.39 + <div style="font: 8px monospace; height: 188px"> 1.40 + a b 1.41 + </div> 1.42 + <textarea/> 1.43 + </div> 1.44 + 1.45 + <div class="flexbox"> 1.46 + <textarea style="height: 122.5px" 1.47 + /><textarea style="height: 73.5px"/> 1.48 + </div> 1.49 + 1.50 + <div class="flexbox"> 1.51 + <textarea style="height: 93px" 1.52 + /><textarea style="height: 103px"/> 1.53 + </div> 1.54 + 1.55 + <div class="flexbox"> 1.56 + <textarea style="height: 114px" 1.57 + /><textarea style="height: 82px"/> 1.58 + </div> 1.59 + 1.60 + <div class="flexbox"> 1.61 + <textarea style="height: 106px" 1.62 + /><textarea style="height: 90px"/> 1.63 + </div> 1.64 + 1.65 + <div class="flexbox"> 1.66 + <textarea style="height: 46px" 1.67 + /><textarea style="height: 150px"/> 1.68 + </div> 1.69 + 1.70 + </body> 1.71 +</html>