chromium/third_party/blink/web_tests/external/wpt/css/css-shapes/shape-outside/supported-shapes/polygon/reference/shape-outside-polygon-019-ref.html

<!DOCTYPE html>
<!-- Any copyright is dedicated to the Public Domain.
   - http://creativecommons.org/publicdomain/zero/1.0/ -->

<html>
  <meta charset="utf-8">
  <title>CSS Shape Test: float right, polygon(60px 20px, 100px 60px, 20px 60px, 60px 100px) border-box reference</title>
  <link rel="author" title="Ting-Yu Lin" href="mailto:[email protected]">
  <link rel="author" title="Mozilla" href="http://www.mozilla.org/">
  <style>
  .container {
    direction: rtl;
    position: absolute;
    width: 200px;
    line-height: 0;
  }

  .shape {
    float: right;
    /* Omit shape-outside */
    clip-path: polygon(60px 20px, 100px 60px, 20px 60px, 60px 100px) border-box;
    box-sizing: content-box;
    height: 40px;
    width: 40px;
    padding: 20px;
    border: 20px solid lightgreen;
    margin: 20px;
    background-color: orange;
  }

  .box {
    position: absolute;
    width: 80px;
    background-color: blue;
  }

  .long {
    width: 200px;
  }
  </style>

  <main class="container">
    <div class="shape"></div>
    <div class="long box" style="height: 30px; top: 0; right: 0;"></div> <!-- Fill the margin and partial border space -->
    <div class="box" style="height: 30px; top: 30px; right: 80px;"></div>
    <div class="box" style="height: 20px; top: 60px; right: 80px;"></div>
    <div class="box" style="height: 20px; top: 80px; right: 120px;"></div>
    <div class="box" style="height: 30px; top: 100px; right: 100px;"></div>
    <div class="long box" style="height: 30px; top: 130px; right: 0;"></div> <!-- Fill the margin and partial border space -->
  </main>
</html>