I know web workers work as a separate thread than the UI thread but i dont understand why they are not allowed to modify the DOM. I mean that you can allow inter thread communication and keep the DOM data in a shared space and have the web workers thread modify the DOM. Why is this not allowed in browsers?

link|improve this question

76% accept rate
feedback

1 Answer

up vote 4 down vote accepted

Because the DOM is not threadsafe, and JavaScript does not expose a thread API.


See also:

link|improve this answer
what do you mean by thread safe here? – lovesh Aug 16 '11 at 17:23
1  
"A piece of code is thread-safe if it can be safely invoked by multiple threads at the same time." en.wikipedia.org/wiki/Thread_safety – Matt Ball Aug 16 '11 at 17:25
can you tell me some references where i can read more about thread safety of DOM? thanks – lovesh Aug 16 '11 at 17:40
1  
It's not thread safe, and was never intended to be, since JavaScript does not have any concept of a thread or other concurrent/parallel constructs. That's it. – Matt Ball Aug 16 '11 at 17:56
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.