<div id='id1'>THE PROBLEM:
Native JavaScript is compiled into machine code by most scripting engines offering incredible performance boost, however interaction with host (browser) objects outside the JavaScript native environment raises unpredictability and considerable performance lag, particularly when dealing with screen-rendered DOM objects or objects which cause Disk I/O (such as WebSQL).
THE SOLUTION:
You can’t really get away from them, but keep your interaction with host objects to an absolute minimum.</div>
<div id='id2'>THE PROBLEM:
Native JavaScript is compiled into machine code by most scripting engines offering incredible performance boost, however interaction with host (browser) objects outside the JavaScript native environment raises unpredictability and considerable performance lag, particularly when dealing with screen-rendered DOM objects or objects which cause Disk I/O (such as WebSQL).
THE SOLUTION:
You can’t really get away from them, but keep your interaction with host objects to an absolute minimum.</div>
<script src='https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.js'></script>
jQuery('#id1')
.width(600).height(400)
.css('position', 'absolute')
.css('top', '200px')
.css('left', '200px');
jQuery('#id1')
.width(599).height(401)
.css('position', 'relative')
.css('top', '199px')
.css('left', '199px');
jQuery('#id2').css({
width: '600px',
height: '400px',
position: 'absolute',
top: '200px',
left: '200px'}
);
jQuery('#id2').css({
width: '599px',
height: '401px',
position: 'relative',
top: '199px',
left: '199px'}
);
jQuery('#id1')
.width(600).height(400);
jQuery('#id1').css('position', 'absolute');
jQuery('#id1').css('top', '200px');
jQuery('#id1').css('left', '200px');
jQuery('#id1')
.width(599).height(401);
jQuery('#id1').css('position', 'relative');
jQuery('#id1').css('top', '199px');
jQuery('#id1').css('left', '199px');
--enable-precise-memory-info
flag.
Test case name | Result |
---|---|
Using multiple calls to host objects (DOM) | |
Using batching - grouping multiple DOM manipulations together | |
Using multiple calls to host objects (DOM) v2 |
Test name | Executions per second |
---|---|
Using multiple calls to host objects (DOM) | 25933.5 Ops/sec |
Using batching - grouping multiple DOM manipulations together | 23125.9 Ops/sec |
Using multiple calls to host objects (DOM) v2 | 24977.3 Ops/sec |
Let's break down what is being tested on the provided JSON.
The test cases are comparing two approaches to update DOM elements:
jQuery('#id1') .width(600).height(400)
followed by another call like jQuery('#id1') .css('position', 'absolute')
. This is done in two variations: "Using multiple calls to host objects (DOM)" and "Using multiple calls to host objects (DOM) v2".jQuery('#id1') .width(600).height(400).css('position', 'absolute').css('top', '200px').css('left', '200px')
. This is done in one variation: "Using batching - grouping multiple DOM manipulations together".Pros and Cons of each approach:
Library usage:
The test case uses jQuery, a popular JavaScript library for DOM manipulation. Its purpose is to simplify the process of interacting with the Document Object Model (DOM) and provide features like event handling, animations, and Ajax interactions.
Special JS feature or syntax:
None mentioned in the provided JSON. However, it's worth noting that some modern browsers may have specific features or syntax optimizations that could affect DOM manipulation performance, such as Web Workers or requestAnimationFrame.
Alternatives:
For testing similar scenarios, you can consider using other JavaScript engines, like V8 (used by Node.js) or SpiderMonkey (used by Firefox), and testing frameworks like Benchmark.js or jsbench. These tools can help you compare the performance of different DOM manipulation approaches in various browsers and environments.