1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/reftests/flexbox/flexbox-inlinecontent-horiz-1-ref.xhtml Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,45 @@ 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 +<!-- 1.10 + Reference case, using a table with fixed-size cells instead of a 1.11 + flex container. 1.12 +--> 1.13 +<html xmlns="http://www.w3.org/1999/xhtml"> 1.14 + <head> 1.15 + <link rel="stylesheet" type="text/css" href="ahem.css" /> 1.16 + <style> 1.17 + table { 1.18 + font: 10px Ahem; 1.19 + height: 100px; 1.20 + width: 200px; 1.21 + } 1.22 + td { vertical-align: top; } 1.23 + td.a { 1.24 + width: 30px; 1.25 + background: lightgreen; 1.26 + } 1.27 + td.b { 1.28 + width: 50px; 1.29 + background: yellow; 1.30 + } 1.31 + td.inflex { 1.32 + width: 20px; 1.33 + background: gray; 1.34 + } 1.35 + </style> 1.36 + </head> 1.37 + <body> 1.38 + <table cellspacing="0" cellpadding="0"> 1.39 + <tr> 1.40 + <td class="a"/> 1.41 + <td>text</td> 1.42 + <td class="b"/> 1.43 + <td><i>italic</i></td> 1.44 + <td class="inflex"></td> 1.45 + </tr> 1.46 + </table> 1.47 + </body> 1.48 +</html>