1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/reftests/flexbox/flexbox-float-1-ref.xhtml Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,39 @@ 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 + display: flex; 1.14 + width: 400px; 1.15 + margin-bottom: 2px; 1.16 + font-family: sans-serif; 1.17 + background: lightgreen; 1.18 + justify-content: space-around; 1.19 + } 1.20 + </style> 1.21 + </head> 1.22 + <body> 1.23 + <div class="flexbox"> 1.24 + aaa<div>[[[</div>bbb 1.25 + </div> 1.26 + <div class="flexbox"> 1.27 + aaa<div>]]]</div>bbb 1.28 + </div> 1.29 + <div class="flexbox"> 1.30 + aaa<div>[[[</div> 1.31 + </div> 1.32 + <div class="flexbox"> 1.33 + aaa<div>]]]</div> 1.34 + </div> 1.35 + <div class="flexbox"> 1.36 + <div>[[[</div>bbb 1.37 + </div> 1.38 + <div class="flexbox"> 1.39 + <div>]]]</div>bbb 1.40 + </div> 1.41 + </body> 1.42 +</html>