layout/reftests/w3c-css/submitted/flexbox/flexbox-mbp-horiz-2-ref.xhtml

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-mbp-horiz-2-ref.xhtml	Wed Dec 31 06:09:35 2014 +0100
     1.3 @@ -0,0 +1,75 @@
     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 +<html xmlns="http://www.w3.org/1999/xhtml">
    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 +    <style>
    1.14 +      div { height: 100px; border: 0; }
    1.15 +      div.flexbox {
    1.16 +        width: 200px;
    1.17 +      }
    1.18 +      div.a {
    1.19 +        display: inline-block;
    1.20 +        background: lightgreen;
    1.21 +        margin-left: 1px;
    1.22 +        margin-right: 3px;
    1.23 +        border-style: dotted;
    1.24 +        border-left-width: 2px;
    1.25 +        border-right-width: 4px;
    1.26 +      }
    1.27 +      div.b {
    1.28 +        display: inline-block;
    1.29 +        background: yellow;
    1.30 +        margin-left: 2px;
    1.31 +        margin-right: 4px;
    1.32 +        border-style: dashed;
    1.33 +        border-left-width: 7px;
    1.34 +        border-right-width: 3px;
    1.35 +      }
    1.36 +      div.c {
    1.37 +        display: inline-block;
    1.38 +        background: orange;
    1.39 +      }
    1.40 +      div.flexNone {
    1.41 +        display: inline-block;
    1.42 +        background: pink;
    1.43 +      }
    1.44 +      div.flexBasis {
    1.45 +        display: inline-block;
    1.46 +        background: gray;
    1.47 +      }
    1.48 +      div.spacer {
    1.49 +        height: 15px;
    1.50 +        background: purple;
    1.51 +      }
    1.52 +    </style>
    1.53 +  </head>
    1.54 +  <body>
    1.55 +    <div class="flexbox">
    1.56 +      <div class="a" style="width: 70px"/><div class="b" style="width: 104px"/>
    1.57 +    </div>
    1.58 +    <div class="flexbox">
    1.59 +      <div class="a" style="width: 52.5px"/><div class="c" style="width: 137.5px"/>
    1.60 +    </div>
    1.61 +    <div class="flexbox">
    1.62 +      <div class="a" style="width: 175px"/><div class="flexNone">
    1.63 +        <div class="spacer" style="width: 15px"/></div>
    1.64 +    </div>
    1.65 +    <div class="flexbox">
    1.66 +      <div class="b" style="width: 60px"/><div class="c" style="width: 124px"/>
    1.67 +    </div>
    1.68 +    <div class="flexbox">
    1.69 +      <div class="b" style="width: 154px"/><div class="flexNone">
    1.70 +        <div class="spacer" style="width: 30px"/></div>
    1.71 +    </div>
    1.72 +    <div class="flexbox">
    1.73 +      <div class="a" style="width: 35px"/><div class="b" style="width: 34px"
    1.74 +      /><div class="flexBasis" style="width: 20px"/><div class="c" style="width: 85px"/>
    1.75 +    </div>
    1.76 +  </body>
    1.77 +</html>
    1.78 +

mercurial