diff options
author | Ms2ger <ms2ger@gmail.com> | 2014-07-12 17:25:59 +0200 |
---|---|---|
committer | Ms2ger <ms2ger@gmail.com> | 2014-07-15 22:29:03 +0200 |
commit | a345f413cbfefaadced841247ebc074cbd092b84 (patch) | |
tree | 31f52589e9c7ef7a0446d549bd3425da1b540bee /src/components/script/script.rs | |
parent | 712955e96abd9606dbc69bf48d9e171c06ce1299 (diff) | |
download | servo-a345f413cbfefaadced841247ebc074cbd092b84.tar.gz servo-a345f413cbfefaadced841247ebc074cbd092b84.zip |
Implement stub classes for WorkerGlobalScope and DedicatedWorkerGlobalScope.
Part of #2811.
Diffstat (limited to 'src/components/script/script.rs')
-rw-r--r-- | src/components/script/script.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/components/script/script.rs b/src/components/script/script.rs index 48b1676a0c4..6dba58edd97 100644 --- a/src/components/script/script.rs +++ b/src/components/script/script.rs @@ -75,6 +75,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 +175,7 @@ pub mod dom { pub mod virtualmethods; pub mod window; pub mod worker; + pub mod workerglobalscope; pub mod xmlhttprequest; pub mod xmlhttprequesteventtarget; pub mod xmlhttprequestupload; |