1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/reftests/w3c-css/submitted/flexbox/flexbox-align-self-stretch-vert-1-ref.html Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,29 @@ 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 +<!-- In this reference case, we just have the testcases's text placed directly 1.10 + in the outermost wrapper-block, with a lime background on that wrapper 1.11 + instead of on a flex item. 1.12 +--> 1.13 +<html> 1.14 +<head> 1.15 + <title>CSS Reftest Reference</title> 1.16 + <link rel="author" title="Daniel Holbert" href="mailto:dholbert@mozilla.com"> 1.17 + <meta charset="utf-8"> 1.18 + <style> 1.19 + div.fixedWidthWrapper { 1.20 + width: 200px; 1.21 + /* Small enough that 3 characters can _easily_ fit in our width */ 1.22 + font-size: 12px; 1.23 + background: lime; 1.24 + } 1.25 + </style> 1.26 +</head> 1.27 +<body> 1.28 + <div class="fixedWidthWrapper"> 1.29 + A B C 1.30 + </div> 1.31 +</body> 1.32 +</html>