chromium/third_party/blink/web_tests/images/color-profile-border-image-source.html

<!DOCTYPE html>
<html>
<head>
<style>
  div {
    border-width: 21px 30px 30px 21px;
    width: 75px;
    height: 75px;
    margin: 10px;
    display: inline-block;
    border-image-source: url("resources/border-image-srgb-color-profile.png") !important
  }

  div.rr {
    -webkit-border-image: none 21 30 30 21 repeat repeat;
    border-style: solid;
  }

  div.rs {
    -webkit-border-image: none 21 30 30 21 repeat stretch;
    border-style: solid;
  }

  div.sr {
    -webkit-border-image: none 21 30 30 21 stretch repeat;
    border-style: solid;
  }

  div.ss {
    -webkit-border-image: none 21 30 30 21 stretch stretch;
    border-style: solid;
  }
</style>
</head>

<body>
    <div class="rr"></div>
    <div class="rs"></div>
    <br>
    <div class="sr"></div>
    <div class="ss"></div>
</body>
</html>