Merge pull request #2842 from Ms2ger/workers

Basic Web Workers; r=Manishearth,larsbergstrom
This commit is contained in:
Ms2ger 2014-07-17 14:16:40 +02:00
commit a3127593c2
13 changed files with 328 additions and 19 deletions

View file

@ -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;