On 4/13/10 1:44 PM, hap497 wrote:
Is main thread same as 'UI' thread?
Yes.
For example, if I click a button to submit a form. These will happen: 1. build a query string 2. send the HTTP Post/Get
This step may occur on multiple threads. Our network engine internally uses threading so that the main thread is never blocked on network activity. But that threading is entirely internal to necko and isn't visible to the client code (the DOM).
3. get the html data back. 4. relayout the page. Are all these running in the Main Thread?
Yes. --BDS _______________________________________________ dev-embedding mailing list [email protected] https://lists.mozilla.org/listinfo/dev-embedding
