HTML Preparation code:
AخA
 
1
<div class="hello" id="hello" data-hello="foo bar baz">Hello</div>  
Tests:
  • Class

     
    document.querySelector('.hello');
  • ID

     
    document.querySelector('#hello');
  • data attribute

     
    document.querySelector('[data-hello]');
  • attribute selector ~ one

     
    document.querySelector('[data-hello~="foo"]');
  • attribute selector ~ second

     
    document.querySelector('[data-hello~="bar"]');
Rendered benchmark preparation results:

Suite status: <idle, ready to run>

Previous results

Experimental features:

  • Test case name Result
    Class
    ID
    data attribute
    attribute selector ~ one
    attribute selector ~ second

    Fastest: N/A

    Slowest: N/A

Latest run results:
Run details: (Test run date: 2 years ago)
Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0 Safari/537.36
Chrome 108 on Windows 8.1
View result in a separate tab
Test name Executions per second
Class 3299271.8 Ops/sec
ID 2512194.2 Ops/sec
data attribute 2272310.2 Ops/sec
attribute selector ~ one 2105571.2 Ops/sec
attribute selector ~ second 2076892.1 Ops/sec