1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/reftests/w3c-css/submitted/flexbox/flexbox-collapsed-item-horiz-3-ref.html Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,46 @@ 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 +<html> 1.10 +<head> 1.11 + <title>CSS Reftest Reference</title> 1.12 + <link rel="author" title="Daniel Holbert" href="mailto:dholbert@mozilla.com"> 1.13 + <meta charset="utf-8"> 1.14 + <style> 1.15 + .flexContainer { 1.16 + display: flex; 1.17 + flex-wrap: wrap; 1.18 + align-content: stretch; /* Initial value; just here for emphasis */ 1.19 + width: 25px; 1.20 + height: 60px; 1.21 + background: yellow; 1.22 + border: 1px dotted black; 1.23 + float: left; 1.24 + margin: 5px; 1.25 + } 1.26 + .collapsedItem { 1.27 + width: 0; 1.28 + height: 40px; 1.29 + } 1.30 + .shortItem { 1.31 + width: 25px; 1.32 + height: 10px; 1.33 + background: purple; 1.34 + } 1.35 + .tallItem { 1.36 + width: 10px; 1.37 + height: 30px; 1.38 + background: olive; 1.39 + } 1.40 + </style> 1.41 +</head> 1.42 +<body> 1.43 + <div class="flexContainer"> 1.44 + <div class="shortItem"></div> 1.45 + <div class="collapsedItem"></div> 1.46 + <div class="tallItem"></div> 1.47 + </div> 1.48 +</body> 1.49 +</html>