diff options
author | Anthony Ramine <n.oxyde@gmail.com> | 2016-05-27 13:40:39 +0200 |
---|---|---|
committer | Anthony Ramine <n.oxyde@gmail.com> | 2016-05-27 16:16:02 +0200 |
commit | 056bdc5514473af665067e3a228b77965973bbbc (patch) | |
tree | 6ad198da15f1090eb34b161c93d02fb75564352f /components/script/lib.rs | |
parent | 8003687debc55c646f40d55ad0dd6a3b80ad50d8 (diff) | |
download | servo-056bdc5514473af665067e3a228b77965973bbbc.tar.gz servo-056bdc5514473af665067e3a228b77965973bbbc.zip |
Implement window.openURLInDefaultBrowser() (fixes #11292)
Diffstat (limited to 'components/script/lib.rs')
-rw-r--r-- | components/script/lib.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/components/script/lib.rs b/components/script/lib.rs index e647003e860..af6d3b2a9c0 100644 --- a/components/script/lib.rs +++ b/components/script/lib.rs @@ -59,6 +59,7 @@ extern crate msg; extern crate net_traits; extern crate num_traits; extern crate offscreen_gl_context; +extern crate open; extern crate phf; #[macro_use] extern crate profile_traits; |