chromium/third_party/blink/web_tests/http/tests/security/shape-image-cors-same-origin.html

<!DOCTYPE html>
<html>
<head>
<script src="/js-test-resources/ahem.js"></script>
<style>
    #clear-left {
        clear: left;
        font: 20px/1 Ahem, sans-serif;
        color: green;
    }

    #clear-left > div {
        float: left;
        width: 200px;
        height: 20px;
    }

    /* Access is OK because the URL and this document have the same origin. */
    #shape-outside-same-origin {
        shape-outside: url("/resources/square100.png");
    } 

</style>
</head>
<body>
    <p>Verify that same-origin images define the layout.</p>
    <div id="clear-left"><div id="shape-outside-same-origin"></div>X</div>
</body>
</html>