1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/reftests/flexbox/flexbox-dyn-insertEmptySpan-1-ref.xhtml Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,43 @@ 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 + This reference case is like its textcase, but with the testcase's dynamic 1.11 + modifications already performed. 1.12 +--> 1.13 +<html xmlns="http://www.w3.org/1999/xhtml"> 1.14 + <head> 1.15 + <style> 1.16 + body { font-size: 10px; } 1.17 + 1.18 + <!-- to make inserted span elements stand out --> 1.19 + span { 1.20 + background: teal; 1.21 + padding: 3px; 1.22 + } 1.23 + 1.24 + div.flexbox { 1.25 + border: 1px dashed blue; 1.26 + width: 300px; 1.27 + display: flex; 1.28 + justify-content: space-around; 1.29 + margin-bottom: 1px; 1.30 + white-space: pre; 1.31 + } 1.32 + </style> 1.33 + </head> 1.34 + <body> 1.35 + <div class="flexbox" id="f0"><span/>[orig]</div> 1.36 + <div class="flexbox" id="f1">[orig]<span/></div> 1.37 + <div class="flexbox" id="f2"><span/> [orig]</div> 1.38 + <div class="flexbox" id="f3"> <span/>[orig]</div> 1.39 + <div class="flexbox" id="f4">[orig]<span/> </div> 1.40 + <div class="flexbox" id="f5">[orig] <span/></div> 1.41 + <div class="flexbox" id="f6"><span/>[NewText][orig]</div> 1.42 + <div class="flexbox" id="f7">[NewText]<span/>[orig]</div> 1.43 + <div class="flexbox" id="f8">[orig]<span/>[NewText]</div> 1.44 + <div class="flexbox" id="f9">[orig][NewText]<span/></div> 1.45 + </body> 1.46 +</html>