diff options
author | David Zbarsky <dzbarsky@gmail.com> | 2015-10-25 15:20:34 -0700 |
---|---|---|
committer | David Zbarsky <dzbarsky@gmail.com> | 2015-10-26 21:24:21 -0700 |
commit | a63c98c24ab946b85cba2cce54e715076e866ac4 (patch) | |
tree | 2f2b34c86e86cff2b52da9b6617c234d38a1c24a /components/script/lib.rs | |
parent | e49c7a3acbc36549e52f99ad67048f5e31352bad (diff) | |
download | servo-a63c98c24ab946b85cba2cce54e715076e866ac4.tar.gz servo-a63c98c24ab946b85cba2cce54e715076e866ac4.zip |
Implement HTMLCanvasElement#toDataURL
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 eb5849221da..b442a3b2d31 100644 --- a/components/script/lib.rs +++ b/components/script/lib.rs @@ -58,6 +58,7 @@ extern crate euclid; extern crate fnv; extern crate html5ever; extern crate hyper; +extern crate image; extern crate ipc_channel; extern crate js; extern crate libc; |