Upstream version 5.34.98.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / LayoutTests / fast / repaint / multicol-repaint.html
1 <!DOCTYPE html>
2
3 <html lang="en">
4 <head>
5   <style type="text/css" media="screen">
6
7     .container {
8       width: 400px;
9       height: 100px;
10       border: 1px solid black;
11       font-size: 50px;
12       -webkit-column-count: 2;
13       column-count: 2;
14       column-fill: auto;
15     }
16
17     span {
18       font-family: Ahem;
19     }
20   </style>
21   <script src="resources/repaint.js" type="text/javascript"></script>
22   <script type="text/javascript">
23      function repaintTest()
24      {
25          document.getElementById('a').innerHTML = 'XXXXXX';
26      }
27   </script>
28 </head>
29 <body onload="runRepaintTest();">
30   
31   <div class="container">
32     &nbsp;<br>
33     <span id="a">x</span>
34   </div>
35 </body>
36 </html>