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