chromium/third_party/blink/web_tests/http/tests/shapes/shape-outside-svg-image-shape-margin-expected.html

<!DOCTYPE html>
<html>
<head>
    <title>CSS Reference File</title>
    <link rel="author" title="Rebecca Hauck" href="[email protected]"/>
    <style type="text/css">
        #outer {
            position: relative;
            width: 100px;
            height: 250px;
        }
        #container {
            position: absolute;
            top: 120px;
        }
        #shape-ref-div {
            width: 50px;
            height: 100px;
            background-color: rgb(0, 100, 0);
        }
        #line {
            width: 100px;
            height: 1px;
            background-color: black;
        }
    </style>
</head>
<body>
    <p>
        The test passes if the green rectangle is below the line. There should be no red.
    </p>
    <div id="outer">
        <div id="container">
            <div id="line"><div>
            <div id="shape-ref-div"></div>
        </div>
    </div>
</body>
</html>