Prevent to show context menu after unlocked
[framework/web/webkit-efl.git] / LayoutTests / perf / htmlcollection-last-item.html
1 <!DOCTYPE html>
2 <body>
3 <div id="container" style="display: none;"></div>
4 <script src="../resources/magnitude-perf.js"></script>
5 <script>
6
7 var container = document.getElementById('container');
8
9 function setupFunction(magnitude)
10 {
11     container.innerHTML = '';
12     for (var i = 0; i < magnitude; i++)
13         container.appendChild(document.createElement('div'));
14 }
15
16 function test(magnitude)
17 {
18     container.children[0].class = 'first item';
19     container.children[container.children.length - 1].class = 'last item';
20 }
21
22 Magnitude.description("Tests that accessing the last item in children HTMLCollection is a constant time operation.");
23 Magnitude.run(setupFunction, test, Magnitude.CONSTANT);
24
25 </script>
26 </body>
27 </html>