diff options
author | Ms2ger <ms2ger@gmail.com> | 2015-01-08 17:33:34 +0100 |
---|---|---|
committer | Ms2ger <ms2ger@gmail.com> | 2015-01-09 10:13:25 +0100 |
commit | edc1d892517e90d95b566c17acc7a3df63e24790 (patch) | |
tree | d1d302de8fc0bd28b7c6735a4ca20380da51c916 /components/script/dom/element.rs | |
parent | d9751c0fbb13d04b27c42a9ba5065b5af26f1286 (diff) | |
download | servo-edc1d892517e90d95b566c17acc7a3df63e24790.tar.gz servo-edc1d892517e90d95b566c17acc7a3df63e24790.zip |
Deny unsafe blocks in script.
As a first start, this allows them indiscriminately where used.
Diffstat (limited to 'components/script/dom/element.rs')
-rw-r--r-- | components/script/dom/element.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/components/script/dom/element.rs b/components/script/dom/element.rs index ec43612be70..df99f4dc91d 100644 --- a/components/script/dom/element.rs +++ b/components/script/dom/element.rs @@ -1283,12 +1283,14 @@ impl<'a> VirtualMethods for JSRef<'a, Element> { } impl<'a> style::TElement<'a> for JSRef<'a, Element> { + #[allow(unsafe_blocks)] fn get_attr(self, namespace: &Namespace, attr: &Atom) -> Option<&'a str> { self.get_attribute(namespace.clone(), attr).root().map(|attr| { // This transmute is used to cheat the lifetime restriction. unsafe { mem::transmute(attr.r().value().as_slice()) } }) } + #[allow(unsafe_blocks)] fn get_attrs(self, attr: &Atom) -> Vec<&'a str> { self.get_attributes(attr).into_iter().map(|attr| attr.root()).map(|attr| { // This transmute is used to cheat the lifetime restriction. |