layout/reftests/w3c-css/submitted/flexbox/flexbox-baseline-single-item-1-ref.html

changeset 0
6474c204b198
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/layout/reftests/w3c-css/submitted/flexbox/flexbox-baseline-single-item-1-ref.html	Wed Dec 31 06:09:35 2014 +0100
     1.3 @@ -0,0 +1,31 @@
     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 +<!-- Reference case, using inline-block instead of inline-flex. -->
    1.10 +<html>
    1.11 +<head>
    1.12 +  <title>CSS Reftest Reference</title>
    1.13 +  <link rel="author" title="Daniel Holbert" href="mailto:dholbert@mozilla.com">
    1.14 +  <meta charset="utf-8">
    1.15 +  <style>
    1.16 +    .flexContainer {
    1.17 +      display: inline-block;
    1.18 +      height: 16px;
    1.19 +      width: 16px;
    1.20 +      background: purple;
    1.21 +      border: 0px dotted black;
    1.22 +      /* (Elements that want a border will set their border-width.) */
    1.23 +    }
    1.24 +  </style>
    1.25 +</head>
    1.26 +<body>
    1.27 +  A
    1.28 +  <div class="flexContainer">a</div>
    1.29 +  <div class="flexContainer" style="padding-bottom: 20px">a</div>
    1.30 +  <div class="flexContainer" style="padding: 10px">a</div>
    1.31 +  <div class="flexContainer" style="border-width: 3px">a</div>
    1.32 +  <div class="flexContainer" style="border-bottom-width: 4px">a</div>
    1.33 +</body>
    1.34 +</html>

mercurial