1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/reftests/w3c-css/submitted/flexbox/flexbox-basic-block-horiz-1-ref.xhtml Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,65 @@ 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 { height: 100px; } 1.15 + div.flexbox { 1.16 + border: 1px dashed blue; 1.17 + width: 200px; 1.18 + } 1.19 + div.a { 1.20 + display: inline-block; 1.21 + background: lightgreen; 1.22 + } 1.23 + div.b { 1.24 + display: inline-block; 1.25 + background: yellow; 1.26 + } 1.27 + div.c { 1.28 + display: inline-block; 1.29 + background: orange; 1.30 + } 1.31 + div.auto { 1.32 + display: inline-block; 1.33 + background: pink; 1.34 + } 1.35 + div.inflex { 1.36 + display: inline-block; 1.37 + background: gray; 1.38 + } 1.39 + div.spacer { 1.40 + height: 15px; 1.41 + background: purple; 1.42 + } 1.43 + </style> 1.44 + </head> 1.45 + <body> 1.46 + <div class="flexbox"> 1.47 + <div class="a" style="width: 80px"/><div class="b" style="width: 120px"/> 1.48 + </div> 1.49 + <div class="flexbox"> 1.50 + <div class="a" style="width: 62.5px"/><div class="c" style="width: 137.5px"/> 1.51 + </div> 1.52 + <div class="flexbox"> 1.53 + <div class="a" style="width: 185px"/><div class="auto"> 1.54 + <div class="spacer" style="width: 15px"/></div> 1.55 + </div> 1.56 + <div class="flexbox"> 1.57 + <div class="b" style="width: 76px"/><div class="c" style="width: 124px"/> 1.58 + </div> 1.59 + <div class="flexbox"> 1.60 + <div class="b" style="width: 170px"/><div class="auto"> 1.61 + <div class="spacer" style="width: 30px"/></div> 1.62 + </div> 1.63 + <div class="flexbox"> 1.64 + <div class="a" style="width: 45px"/><div class="b" style="width: 50px" 1.65 + /><div class="inflex" style="width: 20px"/><div class="c" style="width: 85px"/> 1.66 + </div> 1.67 + </body> 1.68 +</html>