1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/reftests/w3c-css/submitted/flexbox/flexbox-sizing-horiz-2-ref.xhtml Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,46 @@ 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 { width: 200px; } 1.15 + div.flexbox { 1.16 + border: 1px dashed blue; 1.17 + background: lightgreen; 1.18 + font-size: 10px; 1.19 + margin-bottom: 5px; 1.20 + } 1.21 + </style> 1.22 + </head> 1.23 + <body> 1.24 + <div class="flexbox"> 1.25 + <div>text</div> 1.26 + </div> 1.27 + 1.28 + <div class="flexbox"> 1.29 + <div>text</div> 1.30 + </div> 1.31 + 1.32 + <div class="flexbox"> 1.33 + <div>text</div> 1.34 + </div> 1.35 + 1.36 + <div class="flexbox" style="height: 30px"> 1.37 + <div>text</div> 1.38 + </div> 1.39 + 1.40 + <div class="flexbox" style="height: 6px"> 1.41 + <div>text</div> 1.42 + </div> 1.43 + 1.44 + <div class="flexbox" style="height: 30px"> 1.45 + <div>text</div> 1.46 + </div> 1.47 + 1.48 + </body> 1.49 +</html>