chromium/third_party/blink/web_tests/paint/invalidation/multicol/multicol-repaint.html

<!DOCTYPE html>

<html lang="en">
<head>
  <script src="../../../resources/ahem.js"></script>
  <style type="text/css" media="screen">

    .container {
      width: 400px;
      height: 100px;
      border: 1px solid black;
      font-size: 50px;
      -webkit-column-count: 2;
      column-count: 2;
      column-fill: auto;
    }

    span {
      font-family: Ahem;
    }
  </style>
  <script src="../resources/text-based-repaint.js" type="text/javascript"></script>
  <script type="text/javascript">
     function repaintTest()
     {
         document.getElementById('a').innerHTML = 'XXXXXX';
     }
  </script>
</head>
<body onload="runRepaintAndPixelTest();">
  
  <div class="container">
    &nbsp;<br>
    <span id="a">x</span>
  </div>
</body>
</html>