5 background-color: lime;
11 <script src=
"../resources/runner.js"></script>
12 <textarea maxlength=
2147483647 id=
"container"></textarea>
14 var container
= document
.getElementById('container');
16 var childCount
= 1000;
17 for (var i
= 0; i
< childCount
; ++i
)
18 nodes
.push(document
.createTextNode('A quick brown fox jumps over the lazy dog.\n'));
20 PerfTestRunner
.measureRunsPerSecond({
21 description
: "Measures performance of adding text nodes to a textarea, then clearing it.",
23 for (var i
= 0; i
< childCount
; ++i
)
24 container
.appendChild(nodes
[i
]);
25 container
.innerHTML
= '';