aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/lib.rs
diff options
context:
space:
mode:
authorConnor Brewster <brewsterc@my.caspercollege.edu>2016-04-25 14:59:48 -0600
committerConnor Brewster <brewsterc@my.caspercollege.edu>2016-05-03 22:09:35 -0600
commitdc85be4be5510f9ef204a35ea7461f645cbc7e39 (patch)
treed8273b417823db1fbe6f5e18a693b77c510359be /components/script/lib.rs
parent3f2ceeff5dd1966dafe34381e20ec405ab72ccee (diff)
downloadservo-dc85be4be5510f9ef204a35ea7461f645cbc7e39.tar.gz
servo-dc85be4be5510f9ef204a35ea7461f645cbc7e39.zip
Implement alert dialogs
Fixed conflict Fixed merge issue Finished implementation Disable tinyfiledialogs on Windows addressed comments Use ancestor's SubpageId Move display alert from method to function Add extra test for nested iframes Addressed comments Updated tinyfiledialogs
Diffstat (limited to 'components/script/lib.rs')
-rw-r--r--components/script/lib.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/components/script/lib.rs b/components/script/lib.rs
index 05700431c3d..4feaae05845 100644
--- a/components/script/lib.rs
+++ b/components/script/lib.rs
@@ -73,6 +73,8 @@ extern crate smallvec;
#[macro_use]
extern crate style;
extern crate time;
+#[cfg(any(target_os = "macos", target_os = "linux"))]
+extern crate tinyfiledialogs;
extern crate unicase;
extern crate url;
#[macro_use]