diff options
author | Ms2ger <Ms2ger@gmail.com> | 2016-06-07 13:15:23 +0200 |
---|---|---|
committer | Ms2ger <Ms2ger@gmail.com> | 2016-06-07 13:15:23 +0200 |
commit | 684510bc94611ef0e9279d5fe8139a2f5a4c0157 (patch) | |
tree | f9b717d53349a14fc29adba679158e975bb46d26 /components/script/dom/htmliframeelement.rs | |
parent | 858ea2eb9afdee0767a4d35b7f858fde03dd6108 (diff) | |
download | servo-684510bc94611ef0e9279d5fe8139a2f5a4c0157.tar.gz servo-684510bc94611ef0e9279d5fe8139a2f5a4c0157.zip |
Stop re-exporting AttrValue.
Diffstat (limited to 'components/script/dom/htmliframeelement.rs')
-rw-r--r-- | components/script/dom/htmliframeelement.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/components/script/dom/htmliframeelement.rs b/components/script/dom/htmliframeelement.rs index bc37f526f88..6d37513d01a 100644 --- a/components/script/dom/htmliframeelement.rs +++ b/components/script/dom/htmliframeelement.rs @@ -3,7 +3,7 @@ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ use document_loader::{LoadType, LoadBlocker}; -use dom::attr::{Attr, AttrValue}; +use dom::attr::Attr; use dom::bindings::cell::DOMRefCell; use dom::bindings::codegen::Bindings::BrowserElementBinding::BrowserElementErrorEventDetail; use dom::bindings::codegen::Bindings::BrowserElementBinding::BrowserElementIconChangeEventDetail; @@ -42,7 +42,7 @@ use script_traits::IFrameSandboxState::{IFrameSandboxed, IFrameUnsandboxed}; use script_traits::{IFrameLoadInfo, MozBrowserEvent, ScriptMsg as ConstellationMsg}; use std::cell::Cell; use string_cache::Atom; -use style::attr::LengthOrPercentageOrAuto; +use style::attr::{AttrValue, LengthOrPercentageOrAuto}; use style::context::ReflowGoal; use url::Url; use util::prefs::mozbrowser_enabled; |