chromium/third_party/blink/web_tests/fast/borders/border-image-width-rounding-expected.html

<!doctype html>
<html>
  <head>
    <title>Test non-integer border-image-width</title>
    <style>
    .test {
        border-style: solid;
        border-width: 1.9px;
        border-color: green;
        width: 100px;
        height: 100px;
    }
    </style>
  </head>
  <body>
    <p>
      Test that border-image-width is rounded/truncated in the same
      way as border-width. There should be a green border around a
      100x100 square below.
    </p>
    <div class="test"></div>
  </body>
</html>