HTML Preparation code:
x
 
1
<style>
2
  :root {
3
    --test-color: 'red';
4
  }
5
  
6
  .test {
7
    color: var(--test-color);
8
  }
9
  
10
  .test-blue {
11
    --test-color: 'blue';
12
  }
13
  
14
</style>
15
16
<div id="test"></div>
Script Preparation code:
 
el = document.getElementById("test");
Tests:
  • style.setProperty

     
    let i = 0;
    while (i < 10000) {
      el.style.setProperty("--test-color","blue");
      i++;
    }
  • style.cssText

     
    let i = 0;
    while (i < 10000) {
      el.style.cssText = "color:red;border:1vmin solid red;padding:0.5vmin;background-color:black;height:1vh;width:1vw;";
      i++;
    }
  • style

     
    let i = 0;
    while (i < 10000) {
      el.style = "color:red;border:1vmin solid red;padding:0.5vmin;background-color:black;height:1vh;width:1vw;";
      i++;
    }
  • Object.assign

     
    let style = {
      height: '1vh',
      width: '1vw',
      color: 'red',
      border: '1vmin solid red',
      backgroundColor: 'black',
      padding: '0.5vmin'
    };
    let i = 0;
    while (i < 10000) {
      Object.assign(el.style, style);
      i++;
    }
  • setAttribute

     
    let i = 0;
    while (i < 10000) {
      el.setAttribute('style',"color:red;border:1vmin solid red;padding:0.5vmin;background-color:black;height:1vh;width:1vw;");
      i++;
    }
  • classList

     
    let i = 0;
    while (i < 10000) {
      el.classList.add('test-blue');
      i++;
    }
Rendered benchmark preparation results:

Suite status: <idle, ready to run>

Previous results

Experimental features:

  • Test case name Result
    style.setProperty
    style.cssText
    style
    Object.assign
    setAttribute
    classList

    Fastest: N/A

    Slowest: N/A

Latest run results:
Run details: (Test run date: 4 months ago)
Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36
Chrome 130 on Mac OS X 10.15.7
View result in a separate tab
Test name Executions per second
style.setProperty 408.5 Ops/sec
style.cssText 102.4 Ops/sec
style 92.9 Ops/sec
Object.assign 89.1 Ops/sec
setAttribute 1036.7 Ops/sec
classList 806.8 Ops/sec