1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/reftests/flexbox/flexbox-invalidation-1-ref.html Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,36 @@ 1.4 +<!DOCTYPE html> 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, with testcase's dynamic tweak already performed. 1.11 +--> 1.12 +<html> 1.13 + <head> 1.14 + <style> 1.15 + div#outer { margin-left: 40px } 1.16 + 1.17 + div#flexContainer { 1.18 + width: 100px; 1.19 + height: 50px; 1.20 + background: lightgray; 1.21 + display: flex; 1.22 + justify-content: center; 1.23 + } 1.24 + 1.25 + div#flexItem { 1.26 + border: 1px solid black; 1.27 + height: 200%; 1.28 + background: purple; 1.29 + } 1.30 + </style> 1.31 + </head> 1.32 + <body> 1.33 + <div id="outer"> 1.34 + <div id="flexContainer"> 1.35 + <div id="flexItem">item</div> 1.36 + </div> 1.37 + </div> 1.38 + </body> 1.39 +</html>