mirror of
https://github.com/servo/servo.git
synced 2025-06-14 11:24:33 +00:00
Merge pull request #2842 from Ms2ger/workers
Basic Web Workers; r=Manishearth,larsbergstrom
This commit is contained in:
commit
a3127593c2
13 changed files with 328 additions and 19 deletions
|
@ -30,6 +30,7 @@ extern crate js;
|
|||
extern crate libc;
|
||||
extern crate native;
|
||||
extern crate net;
|
||||
extern crate rustrt;
|
||||
extern crate serialize;
|
||||
extern crate time;
|
||||
#[phase(plugin)]
|
||||
|
@ -75,6 +76,7 @@ pub mod dom {
|
|||
pub mod comment;
|
||||
pub mod console;
|
||||
pub mod customevent;
|
||||
pub mod dedicatedworkerglobalscope;
|
||||
pub mod document;
|
||||
pub mod documentfragment;
|
||||
pub mod documenttype;
|
||||
|
@ -174,6 +176,8 @@ pub mod dom {
|
|||
pub mod validitystate;
|
||||
pub mod virtualmethods;
|
||||
pub mod window;
|
||||
pub mod worker;
|
||||
pub mod workerglobalscope;
|
||||
pub mod xmlhttprequest;
|
||||
pub mod xmlhttprequesteventtarget;
|
||||
pub mod xmlhttprequestupload;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue