<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"><head>
    <title>CSS Test: shape-outside from first frame of animated gif</title>
    <link href="rhauck@adobe.com" rel="author" title="Rebecca Hauck" />
    <link href="http://www.w3.org/TR/css-shapes-1/#shapes-from-image" rel="help" />
    <link href="http://www.w3.org/TR/css-shapes-1/#shape-outside-property" rel="help" />
    <link href="reference/shape-image-025-ref.xht" rel="match" />
    <meta content="ahem" name="flags" />
    <meta content="This test verifies that shape-outside is extracted from the
                                 first frame of an animated gif." name="assert" />
    <style type="text/css">
        body { margin: 0; }
        .container {
          left: 10px;
          width: 200px;
          font: 50px/1 Ahem;
          color: rgb(0,100,0);
        }
        #image {
            float: left;
            shape-outside: url("support/animated.gif");
        }
        .blue-line {
            top: 50px;
            left: 60px;
            width: 2px;
            height: 140px;
            background-color: blue;
        }
        .square {
            width: 50px;
            height: 50px;
        }
        .green { 
            left: 10px;
            background-color: rgb(0,100,0);
        }
        .failure {
            left: 60px;
            background-color: red;
            z-index: -1;
        }
        .container, .blue-line, .square, .failure { position: absolute; }
        .container, .square, .failure { top: 70px; }
    </style>
</head>
<body>
    <p>
        The test passes if there are two identical green rectangles on either side of the blue line.
        There should be no red.
    </p>
    <div class="container">
        <img src="support/animated.gif" id="image" />
       X<br />X
    </div>
    <div class="green square"></div>
    <div class="blue-line"></div>
    <div class="failure square"></div>



</body></html>