QA/Firefox3.5/DOMWorkerThreads TestPlan: Difference between revisions

From MozillaWiki
< QA‎ | Firefox3.5
Jump to navigation Jump to search
(DOM Worker Threads Test Plan)
 
No edit summary
Line 26: Line 26:
= References =
= References =


[https://wiki.mozilla.org/DOMWorkerThreads Original Proposal]
* [https://wiki.mozilla.org/DOMWorkerThreads Original Proposal]
[http://ejohn.org/apps/threads/ John Resigs Working Example]
* [http://ejohn.org/apps/threads/ John Resigs Working Example]

Revision as of 22:03, 4 September 2008

Feature DOM Worker Threads Test Plan

Overview

Currently, everything is on one UI thread and this affects performance of the browser. DOM Worker Threads allows the developer to break up processing into multiple threads in order to increase this performance and take strain off of the UI thread.

We need to test message passing, error passing, timeouts/intervals, security, scoping, interaction with the platform are all bug free.

Bugs:

Test Strategy

Test coverage consists of:

  • Verifying the above bugs and regression-testing affected areas
  • Running the Mochikit tests
  • Example code
  • Performance comparisons
  • Automated test cases

Schedule Scoping

Running all of the above should take the better part of a day to thoroughly ensure validation.

References