Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
            - /css/css-shapes/shape-outside/supported-shapes/inset/shape-outside-inset-013.html - WPT Dashboard Interop Dashboard
 
<!DOCTYPE html>
<html>
    <head>
        <title>CSS Test: left float, inset + border-box</title>
        <link rel="author" title="Rebecca Hauck" href="mailto:rhauck@adobe.com">
        <link rel="match" href="reference/shape-outside-inset-010-ref.html"/>
        <meta name="flags" content="ahem" />
        <meta name="assert" content="The test verfies that text flows around a
                                     left float with a shape-outside defined as
                                     an inset rectangle + border-box.">
    </head>
    <link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
    <style>
        #container {
            position: relative;
            margin-left: 25px;
        }
        #test-container {
            width: 200px;
            height: 200px;
            font-family: Ahem;
            font-size: 25px;
            line-height: 1;
            background-color: red;
            color: green;
        }
        #test-shape {
            float: left;
            width: 50px;
            height: 50px;
            border: 25px solid red;
            margin: 25px;
            padding: 25px;
            shape-outside: border-box inset(25px 75px 25px -25px);
        }
        #static-shape {
            position: absolute;
            top: 50px;
            left: 0px;
            width: 100px;
            height: 100px;
            background-color: green;
        }
    </style>
    <body>
        <p>The test passes if there is a green square and no red.</p>
        <div id="container">
            <div id="test-container">
                <div id="test-shape"></div>
                XXXXXXXX XXXXXXXX XXXX XXXX XXXX XXXX XXXXXXXX XXXXXXXX
            </div>
            <div id="static-shape"></div>
        </div>
    </body>
</html>