Click here to Skip to main content
Licence CPOL
First Posted 25 Mar 2009
Views 11,523
Downloads 25
Bookmarked 5 times

Simple Browser Iteration Test

By | 25 Mar 2009 | Article
Check different browsers' responses to a simple iteration test (JavaScript).

Introduction

There is a big battle out there about Internet Browsers! Everyone says their browser is the best and fastest. I think this is the time that we CodeProject guys should start to create our test tools and not listen to what ads say.

I am not a professional tester in this case. As a web developer, my first concern is the iteration speed. For this purpose, I have created a kid-level HTML page to iterate 10,000 times and add a simple text to a text area within the page:

<html>
<head>
 <title>Simple Browser Iteration Test</title>
</head>
<body>
 <textarea id="text" style="height: 300px;" cols="80" rows="20"></textarea>
 <script language="javascript" type="text/javascript">
  var t = document.getElementById("text");
  var d1 = Date();
  for (var i = 0; i < 10000; i++) {
     t.value += i.toString();
  }
  var d2 = Date();
  document.write("<br />" + d1 + "<br />" + d2);
</script>
</body>
</html>

As you can see, it is really simple and does not need any extra explanation.

The following are the results of running this page on my machine in different browsers:

1. IE8-64bit: ~6 sec

IE8-64bit.png

2. IE8-32bit: ~7 sec

IE8-32bit.png

3. Chrome 1.0.154.53: ~12 sec

Chrome.png

4. FireFox 3.0.7: ~4min and 56sec

FireFox.png

I think you got the main idea. I request to create an Open Source project here to work on Browsers in real action tests in which everyone can check their code and make any suggestions. It would help to find out the reality, not what vendors say!

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

Tecfield

Software Developer (Senior)

United States United States

Member

I got my BS in Software Engineering from Iran, worked there for 4.5 years mainly in industrial automation field. Then I moved to Australia. In Australia, I had a great chance to work at some big companies. Since 2009 I have been living in the States. I received my MS in Information Systems from Illinois State University. Currently, I am a Senior Software Development Engineer.

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
QuestionHardware? PinmemberDanila Korablin2:51 30 Mar '09  
AnswerRe: Hardware? PinmemberTecfield14:59 30 Mar '09  
Generalsomehow I do not care which one is fastest browsers. PinmemberGevorg4:53 28 Mar '09  
GeneralRe: somehow I do not care which one is fastest browsers. PinmemberTecfield3:17 29 Mar '09  
GeneralSafari got hole process in just 3 sec nice Pinmemberkru0:50 27 Mar '09  
GeneralRe: Safari got hole process in just 3 sec nice PinmemberTecfield19:39 27 Mar '09  
GeneralIE , Firefox Table PinmemberMember 400479921:26 26 Mar '09  
GeneralRe: IE , Firefox Table [modified] PinmemberTecfield3:15 29 Mar '09  

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web01 | 2.5.120517.1 | Last Updated 25 Mar 2009
Article Copyright 2009 by Tecfield
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid