Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6168173
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T22:38:26+00:00 2026-05-23T22:38:26+00:00

The web browser DOM has been around since the late ’90s, but it remains

  • 0

The web browser DOM has been around since the late ’90s, but it remains one of the largest constraints in performance/speed.

We have some of the world’s most brilliant minds from Google, Mozilla, Microsoft, Opera, W3C, and various other organizations working on web technologies for all of us, so obviously this isn’t a simple “Oh, we didn’t optimize it” issue.

My question is if i were to work on the the part of a web browser that deals specifically with this, why would I have such a hard time making it run faster?

My question is not asking what makes it slow, it’s asking why hasn’t it become faster?

This seems to be against the grain of what’s going on elsewhere, such as JS engines with performance near that of C++ code.

Example of quick script:

for (var i=0;i<=10000;i++){
    someString = "foo";
}

Example of slow because of DOM:

for (var i=0;i<=10000;i++){
    element.innerHTML = "foo";
}

Some details as per request:

After bench marking, it looks like it’s not an unsolvable slow issue, but often the wrong tool is used, and the tool used depends on what you’re doing cross-browser.

It looks like the DOM efficiency varies greatly between browsers, but my original presumption that the dom is slow and unsolvable seems to be wrong.

I ran tests against Chrome, FF4, and IE 5-9, you can see the operations per second in this chart:

enter image description here

Chrome is lightning fast when you use the DOM API, but vastly slower using the .innerHTML operator (by a magnitude 1000-fold slower), however, FF is worse than Chrome in some areas (for instance, the append test is much slower than Chrome), but the InnerHTML test runs much faster than chrome.

IE seems to actually be getting worse at using DOM append and better at innerHTML as you progress through versions since 5.5 (ie, 73ops/sec in IE8 now at 51 ops/sec in IE9).

I have the test page over here:

http://jsperf.com/browser-dom-speed-tests2

What’s interesting is that it seems different browsers seem to all be having different challenges when generating the DOM. Why is there such disparity here?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-23T22:38:27+00:00Added an answer on May 23, 2026 at 10:38 pm

    When you change something in the DOM it can have myriad side-effects to do with recalculating layouts, style sheets etc.

    This isn’t the only reason: when you set element.innerHTML=x you are no longer dealing with ordinary “store a value here” variables, but with special objects which update a load of internal state in the browser when you set them.

    The full implications of element.innerHTML=x are enormous. Rough overview:

    • parse x as HTML
    • ask browser extensions for permission
    • destroy existing child nodes of element
    • create child nodes
    • recompute styles which are defined in terms of parent-child relationships
    • recompute physical dimensions of page elements
    • notify browser extensions of the change
    • update Javascript variables which are handles to real DOM nodes

    All these updates have to go through an API which bridges Javascript and the HTML engine. One reason that Javascript is so fast these days is that we compile it to some faster language or even machine code, masses of optimisations happen because the behaviour of the values is well-defined. When working through the DOM API, none of this is possible. Speedups elsewhere have left the DOM behind.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Winform: Web browser Control The web browser has the following displayed content, within a
In a web browser written in java different types of parser have been used
I know this question has been asked many times, but I have not been
I have a .NET web browser and through DOM I am making certain changes
In my web browser userscript project I need to replace just one text node
I have a simple web browser embedded in an application that allows a user
I have created a web browser in c# this was what i get when
I am using a web browser in my current project and currently I'm using
I am hosting a web browser control, and want to provide my own context
I used web browser component in my app for windows mobile... I set the

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.