1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/reftests/flexbox/flexbox-align-self-baseline-horiz-4-ref.xhtml Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,38 @@ 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 +<!-- Reference case for behavior of the 'baseline' value for align-items and 1.10 + align-self. 1.11 +--> 1.12 +<html xmlns="http://www.w3.org/1999/xhtml"> 1.13 + <head> 1.14 + <style> 1.15 + div.flexbox { 1.16 + display: block; 1.17 + border: 1px dashed blue; 1.18 + font: 14px sans-serif; 1.19 + } 1.20 + 1.21 + div { display: inline-block; } 1.22 + table { 1.23 + display: inline-table; 1.24 + margin: 1px; /* to fix fuzziness from text overlapping table border */ 1.25 + } 1.26 + 1.27 + .lime { background: lime; } 1.28 + .pink { background: pink; } 1.29 + .aqua { background: aqua; } 1.30 + </style> 1.31 + </head> 1.32 + <body> 1.33 + <div class="flexbox"> 1.34 + <div class="lime">text</div 1.35 + ><table class="pink" border="1"> 1.36 + <tr><td>tr1</td></tr> 1.37 + <tr><td>tr2</td></tr> 1.38 + </table> 1.39 + </div> 1.40 + </body> 1.41 +</html>