diff options
author | Manish Goregaokar <manishsmail@gmail.com> | 2015-03-19 07:40:22 +0530 |
---|---|---|
committer | Ms2ger <ms2ger@gmail.com> | 2015-03-21 10:27:32 +0100 |
commit | 3479d3fa7fbbfbcdbc92a93896b4a347338fe103 (patch) | |
tree | d05bd5d1964dfad791132d2384950cc681597f6e /components/script/parse | |
parent | 4eb26065acdc37d275e658d8581282cb39b90686 (diff) | |
download | servo-3479d3fa7fbbfbcdbc92a93896b4a347338fe103.tar.gz servo-3479d3fa7fbbfbcdbc92a93896b4a347338fe103.zip |
Replace unsafe_blocks by unsafe_code.
Diffstat (limited to 'components/script/parse')
-rw-r--r-- | components/script/parse/html.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/script/parse/html.rs b/components/script/parse/html.rs index 7d2dbf06741..ce7b75f9338 100644 --- a/components/script/parse/html.rs +++ b/components/script/parse/html.rs @@ -2,7 +2,7 @@ * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ -#![allow(unsafe_blocks, unrooted_must_root)] +#![allow(unsafe_code, unrooted_must_root)] use dom::attr::AttrHelpers; use dom::bindings::codegen::Bindings::NodeBinding::NodeMethods; |