summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/fast/repaint/multicol-repaint.html
blob: 458d46ae0ead8069997422ae927f548706dbcd6c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<!DOCTYPE html>

<html lang="en">
<head>
  <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="runRepaintTest();">
  
  <div class="container">
    &nbsp;<br>
    <span id="a">x</span>
  </div>
</body>
</html>