diff options
author | Simon Sapin <simon.sapin@exyr.org> | 2017-08-11 16:24:21 +0200 |
---|---|---|
committer | Simon Sapin <simon.sapin@exyr.org> | 2017-08-15 14:10:44 +0200 |
commit | b5a4b8d6a09a71bd3a4ff4ae68e7a9639f9dcaad (patch) | |
tree | 6f19f8562d57258c06ee21ee2bdbd85f9ae2cb64 /components/script/dom/url.rs | |
parent | 41fb10c58995781d595a233afae0758427ad5cc5 (diff) | |
download | servo-b5a4b8d6a09a71bd3a4ff4ae68e7a9639f9dcaad.tar.gz servo-b5a4b8d6a09a71bd3a4ff4ae68e7a9639f9dcaad.zip |
Upgrade to rustc 1.21.0-nightly (13d94d5fa 2017-08-10)
Diffstat (limited to 'components/script/dom/url.rs')
-rw-r--r-- | components/script/dom/url.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/components/script/dom/url.rs b/components/script/dom/url.rs index a02a735638f..41de4dcc0c7 100644 --- a/components/script/dom/url.rs +++ b/components/script/dom/url.rs @@ -96,8 +96,8 @@ impl URL { // https://w3c.github.io/FileAPI/#dfn-createObjectURL pub fn CreateObjectURL(global: &GlobalScope, blob: &Blob) -> DOMString { - /// XXX: Second field is an unicode-serialized Origin, it is a temporary workaround - /// and should not be trusted. See issue https://github.com/servo/servo/issues/11722 + // XXX: Second field is an unicode-serialized Origin, it is a temporary workaround + // and should not be trusted. See issue https://github.com/servo/servo/issues/11722 let origin = get_blob_origin(&global.get_url()); let id = blob.get_blob_url_id(); |