Access to nodes via querySelectorAll vs getElementsByTagName (v6)

Revision 6 of this benchmark created by Jacob Swartwood on


Description

we discovered that calling getelementsbytagname('DIV') is a way faster than queryselectorall('DIV') http://www.nczonline.net/blog/2010/09/28/why-is-getelementsbytagname-faster-that-queryselectorall

the reason being that the former returns an HTMLCollection (live list) and the later a NodeList (static list). To go further we will see if accessing properties of a static list compensates the time to create it

Preparation HTML

<div>
  <ul>
    <li><a href="#">item 1</a></li>
    <li><a href="#">item 2</a></li>
    <li><a href="#">item 3</a></li>
    <li><a href="#">item 4</a></li>
    <li><a href="#">item 5</a></li>
    <li><a href="#">item 6</a></li>
    <li><a href="#">item 7</a></li>
    <li><a href="#">item 8</a></li>
    <li><a href="#">item 9</a></li>
    <li><a href="#">item 10</a></li>
    <li><a href="#">item 11</a></li>
    <li><a href="#">item 12</a></li>
    <li><a href="#">item 13</a></li>
    <li><a href="#">item 14</a></li>
    <li><a href="#">item 15</a></li>
    <li><a href="#">item 16</a></li>
    <li><a href="#">item 17</a></li>
  </ul>
</div>

Test runner

Ready to run.

Testing in
TestOps/sec
querySelectorAll
var nodes = document.querySelectorAll('a');
nodes[0];
ready
getElementsByTagName
var nodes = document.getElementsByTagName('a');
nodes[0];
ready

Revisions

You can edit these tests or add more tests to this page by appending /edit to the URL.