1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/reftests/w3c-css/submitted/flexbox/flexbox-basic-iframe-horiz-1-ref.xhtml Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,60 @@ 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 + width: 200px; 1.16 + background: lightgreen; 1.17 + margin-bottom: 5px; 1.18 + line-height: 8px; 1.19 + } 1.20 + iframe { 1.21 + width: 10px; 1.22 + height: 20px; 1.23 + border: 1px dotted green; 1.24 + } 1.25 + </style> 1.26 + </head> 1.27 + <body> 1.28 + <div class="flexbox"> 1.29 + <iframe/> 1.30 + </div> 1.31 + 1.32 + <div class="flexbox" style="height: 22px"> 1.33 + some words 1.34 + <iframe style="float:right"/> 1.35 + </div> 1.36 + 1.37 + <div class="flexbox"> 1.38 + <iframe style="width: 122.5px" 1.39 + /><iframe style="width: 73.5px"/> 1.40 + </div> 1.41 + 1.42 + <div class="flexbox"> 1.43 + <iframe style="width: 93px" 1.44 + /><iframe style="width: 103px"/> 1.45 + </div> 1.46 + 1.47 + <div class="flexbox"> 1.48 + <iframe style="width: 114px" 1.49 + /><iframe style="width: 82px"/> 1.50 + </div> 1.51 + 1.52 + <div class="flexbox"> 1.53 + <iframe style="width: 106px" 1.54 + /><iframe style="width: 90px"/> 1.55 + </div> 1.56 + 1.57 + <div class="flexbox"> 1.58 + <iframe style="width: 46px" 1.59 + /><iframe style="width: 150px"/> 1.60 + </div> 1.61 + 1.62 + </body> 1.63 +</html>