layout/reftests/bugs/414638-ref.html

changeset 0
6474c204b198
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/layout/reftests/bugs/414638-ref.html	Wed Dec 31 06:09:35 2014 +0100
     1.3 @@ -0,0 +1,27 @@
     1.4 +<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
     1.5 +<html>
     1.6 + <head>
     1.7 +  <title>CSS Test: clip: Missing commas in rect()</title>
     1.8 +  <link rel="author" title="Elika J. Etemad" href="http://fantasai.inkedblade.net/">
     1.9 +  <link rel="help" href="http://www.w3.org/TR/CSS21/visufx.html#clipping">
    1.10 +  <meta name="flags" content="invalid may">
    1.11 +  <meta name="assert" content="User agents may support separation of values     within rect() by whitespace instead of commas, but not a combination of     whitespace and commas.">
    1.12 +  <style type="text/css">
    1.13 +    div {
    1.14 +      background: red;
    1.15 +      width: 100px; height: 100px;
    1.16 +    }
    1.17 +    .inner {
    1.18 +      position: absolute;
    1.19 +      background: green;
    1.20 +    }
    1.21 +  </style>
    1.22 +
    1.23 + </head>
    1.24 + <body>
    1.25 +    <p>There must be a green box below and no red.</p>
    1.26 +    <div class="outer">
    1.27 +      <div class="inner"></div>
    1.28 +    </div>
    1.29 + </body>
    1.30 +</html>

mercurial