chromium/third_party/blink/web_tests/fast/shapes/shape-outside-floats/shape-outside-relative-size-svg.html

<!DOCTYPE html>
<html>
<head>
<style>
#container {
    color: green;
    font: 100px/1 Ahem, sans-serif;
}
#shape-outside {
    margin-top: 100px;
    width: 200px;
    height: 400px;
    float: left;
    shape-outside: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg'><rect width='50%' height='25%' fill='blue' /></svg>");
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg'><rect width='50%' height='25%' fill='blue' /></svg>");
    background-repeat: no-repeat;
}
</style>
</head>
<body>
<p>You should see three green squares: above the blue square, to the blue square's right, and below the blue square.</p>
<div id="container">
  <div id="shape-outside"></div>
  X<br>X<br>X
</div>
</body>
</html>