chromium/third_party/blink/web_tests/fast/shapes/shape-outside-floats/shape-outside-floats-image-margin-005-expected.html

<!DOCTYPE html>
<html>
<head>
<style>
    #content {
        font: 25px/1 Ahem, sans-serif;
        color: green;
        text-align: right;
    }

    #image-shape {
        float: right;
        width: 100px;
        height: 100px;
        margin: 25px;
        background-color: blue;
    }
</style>
</head>
<body>
  <p>The green rectangles should wrap around the blue 100x100 rectangle and a 25 pixel margin.</p>
  <div id="content">
      <div id="image-shape"></div>
      X<br>X<br>X<br>X<br>X<br>X<br>X
  </div>
</body>
</html>