1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/reftests/flexbox/flexbox-basic-textarea-horiz-2-ref.xhtml Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,29 @@ 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 + <style> 1.12 + div.flexbox { 1.13 + height: 50px; 1.14 + width: 50px; 1.15 + border: 2px dotted black; 1.16 + display: flex; 1.17 + } 1.18 + textarea { 1.19 + width: 50px; 1.20 + height: 50px; 1.21 + background: purple; 1.22 + border: 1px dotted green; 1.23 + min-width: -moz-min-content; 1.24 + } 1.25 + </style> 1.26 + </head> 1.27 + <body> 1.28 + <div class="flexbox"> 1.29 + <textarea/> 1.30 + </div> 1.31 + </body> 1.32 +</html>