1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/reftests/flexbox/flexbox-basic-video-vert-2-ref.xhtml Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,31 @@ 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 + flex-direction: column; 1.18 + } 1.19 + video { 1.20 + width: 50px; 1.21 + height: 50px; 1.22 + background: purple; 1.23 + /* min-height: min-content isn't supported yet (bug 852367), but we'd 1.24 + like this to work when it is supported. */ 1.25 + min-height: -moz-min-content; 1.26 + } 1.27 + </style> 1.28 + </head> 1.29 + <body> 1.30 + <div class="flexbox"> 1.31 + <video/> 1.32 + </div> 1.33 + </body> 1.34 +</html>