<div>
<p>12345</p>
12345
</div>
var X = 0;
var A = document.body;
var B = document.body.querySelector("div>p");
var C = A.querySelector("div>p");
var D = A.querySelector("div");
var E = D.querySelector(":scope>p");
document.body.querySelector("div>p").textContent += X;
B.textContent += X;
C.textContent += X;
E.textContent += X;
A.querySelector("div>p").textContent += X;
document.body.querySelector("div>p").textContent += X;
--enable-precise-memory-info
flag.
Test case name | Result |
---|---|
1 | |
2 | |
3 | |
4 | |
5 | |
6 |
Test name | Executions per second |
---|---|
1 | 7594.5 Ops/sec |
2 | 3619.7 Ops/sec |
3 | 2640.2 Ops/sec |
4 | 2176.3 Ops/sec |
5 | 1791.3 Ops/sec |
6 | 1784.5 Ops/sec |
I'll explain the provided benchmark in detail, including what is tested, options compared, pros and cons of each approach, and other considerations.
Benchmark Definition
The benchmark definition represents six test cases that compare the performance of different ways to modify the text content of an element. The tests are designed to measure how fast the browser can execute a specific JavaScript code snippet.
Here's a breakdown of each test case:
document.body.querySelector("div>p").textContent += X;
B.textContent += X;
(where B
is the result of A.querySelector("div>p")
)C.textContent += X;
(where C
is the result of A.querySelector("div")
)E.textContent += X;
(where E
is the result of D.querySelector(":scope>p")
)A.querySelector("div>p").textContent += X;
document.body.querySelector("div>p").textContent += X;
Options Compared
The benchmark compares six different options:
E
) using querySelector
with a scope selector (:scope
).querySelector
and then modifying its text content.querySelector
in a variable, but not modifying its text content.Pros and Cons
Here are some pros and cons of each approach:
E
)querySelector
operation is expensive.querySelector
and then modifying its text content (test cases 2, 3, 5)querySelector
operation is expensive, or if the variable needs to be updated frequently.querySelector
in a variable, but not modifying its text content (test cases 1, 4, 6)Library and Purpose
None of the test cases use any specific library, but querySelector
is a standard JavaScript method for selecting elements by their CSS selectors.
Special JS Feature or Syntax
There are no special JS features or syntax used in this benchmark. All tests follow standard JavaScript syntax.
Other Considerations
:scope
pseudo-class is a scope selector that refers to the current document's context, making it equivalent to querying the same element as before.textContent += X
instead of textContent = X + ...
may affect performance since textContent
is a property that involves some extra work.Alternatives
There are other alternatives to measure the performance of similar operations:
DOMTokenList
or CSSOM
Keep in mind that these alternatives may provide more fine-grained control over the benchmark, but also require more expertise and effort to set up and interpret.