HTML Preparation code:
AخA
 
1
<div id="test"></div>
Script Preparation code:
 
el = document.getElementById("test");
Tests:
  • style.cssText

     
    el.style.cssText = "color:red;border:1vmin solid red;padding:0.5vmin;background-color:black;height:1vh;width:1vw;";
  • style

     
    el.style.height = '1vh';
    el.style.width = '1vw';
    el.style.color = 'red';
    el.style.border = '1vmin solid red';
    el.style.backgroundColor = 'black';
    el.style.padding = '0.5vmin';
  • setAttribute

     
    el.setAttribute('style',"color:red;border:1vmin solid red;padding:0.5vmin;background-color:black;height:1vh;width:1vw;");
Rendered benchmark preparation results:

Suite status: <idle, ready to run>

Previous results

Experimental features:

  • Test case name Result
    style.cssText
    style
    setAttribute

    Fastest: N/A

    Slowest: N/A

Latest run results:
Run details: (Test run date: one year ago)
Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/114.0
Firefox 114 on Windows
View result in a separate tab
Test name Executions per second
style.cssText 227708.4 Ops/sec
style 70659.1 Ops/sec
setAttribute 3582636.0 Ops/sec