diff options
author | Gilles Leblanc <gilles.leblanc@gmail.com> | 2014-09-20 08:51:35 -0400 |
---|---|---|
committer | Gilles Leblanc <gilles.leblanc@gmail.com> | 2014-09-20 08:51:35 -0400 |
commit | 652d21796150631f3cbb6c00089415b1f83acc3c (patch) | |
tree | ce1d17e575db42e5d63cb09151afcf8ce5bbd85a /components/script/lib.rs | |
parent | de67710934ac89de0cf21911dc57dcda7cb0fae1 (diff) | |
download | servo-652d21796150631f3cbb6c00089415b1f83acc3c.tar.gz servo-652d21796150631f3cbb6c00089415b1f83acc3c.zip |
Share code between Navigator and WorkerNavigator
Also shares code between Location and WorkerLocation. This has been done
by introducing NavigatorInfo and UrlHelper.
Fixes #3159
Diffstat (limited to 'components/script/lib.rs')
-rw-r--r-- | components/script/lib.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/components/script/lib.rs b/components/script/lib.rs index 4318f4b3f21..329185e3058 100644 --- a/components/script/lib.rs +++ b/components/script/lib.rs @@ -173,6 +173,7 @@ pub mod dom { pub mod mouseevent; pub mod namednodemap; pub mod navigator; + pub mod navigatorinfo; pub mod node; pub mod nodeiterator; pub mod nodelist; @@ -185,6 +186,7 @@ pub mod dom { pub mod text; pub mod treewalker; pub mod uievent; + pub mod urlhelper; pub mod urlsearchparams; pub mod validitystate; pub mod virtualmethods; |