2 <script src=
"../../resources/runner.js"></script>
3 <body style=
"overflow:scroll;"> <!-- don't want auto scrollbars to affect the number of layout passes. -->
5 <div id=
"target" style=
"position:absolute; top:0; left:0; display:none; -webkit-columns:2; column-fill:auto; width:40em; height:40em;">
6 <div style=
"height:1000000px;">xxxxxxxxxx
</div>
9 var target
= document
.getElementById("target");
10 var style
= target
.style
;
13 style
.display
= "block";
14 PerfTestRunner
.forceLayoutOrFullFrame();
16 // Do some hit-testing.
17 document
.caretRangeFromPoint(10, 10);
19 style
.display
= "none";
20 PerfTestRunner
.forceLayoutOrFullFrame();
23 PerfTestRunner
.measureRunsPerSecond({
24 description
: "Measures performance of multicol layout with many columns.",