diff options
Diffstat (limited to 'components/script')
-rw-r--r-- | components/script/dom/bindings/trace.rs | 5 | ||||
-rw-r--r-- | components/script/dom/css.rs | 2 | ||||
-rw-r--r-- | components/script/dom/csskeyframerule.rs | 2 | ||||
-rw-r--r-- | components/script/dom/csskeyframesrule.rs | 3 | ||||
-rw-r--r-- | components/script/dom/csssupportsrule.rs | 2 | ||||
-rw-r--r-- | components/script/dom/cssviewportrule.rs | 2 | ||||
-rw-r--r-- | components/script/dom/htmlmetaelement.rs | 3 |
7 files changed, 8 insertions, 11 deletions
diff --git a/components/script/dom/bindings/trace.rs b/components/script/dom/bindings/trace.rs index 64ef88da5e3..db3cd3b5c42 100644 --- a/components/script/dom/bindings/trace.rs +++ b/components/script/dom/bindings/trace.rs @@ -95,16 +95,15 @@ use std::time::{SystemTime, Instant}; use style::attr::{AttrIdentifier, AttrValue, LengthOrPercentageOrAuto}; use style::context::QuirksMode; use style::element_state::*; -use style::keyframes::Keyframe; use style::media_queries::MediaList; use style::properties::PropertyDeclarationBlock; use style::selector_parser::{PseudoElement, Snapshot}; use style::shared_lock::{SharedRwLock as StyleSharedRwLock, Locked as StyleLocked}; use style::stylearc::Arc as StyleArc; use style::stylesheets::{CssRules, FontFaceRule, KeyframesRule, MediaRule}; -use style::stylesheets::{NamespaceRule, StyleRule, ImportRule, SupportsRule}; +use style::stylesheets::{NamespaceRule, StyleRule, ImportRule, SupportsRule, ViewportRule}; +use style::stylesheets::keyframes_rule::Keyframe; use style::values::specified::Length; -use style::viewport::ViewportRule; use time::Duration; use uuid::Uuid; use webrender_traits::{WebGLBufferId, WebGLError, WebGLFramebufferId, WebGLProgramId}; diff --git a/components/script/dom/css.rs b/components/script/dom/css.rs index d56575b9d38..521c09ed4c2 100644 --- a/components/script/dom/css.rs +++ b/components/script/dom/css.rs @@ -12,7 +12,7 @@ use dom_struct::dom_struct; use style::context::QuirksMode; use style::parser::{PARSING_MODE_DEFAULT, ParserContext}; use style::stylesheets::CssRuleType; -use style::supports::{Declaration, parse_condition_or_declaration}; +use style::stylesheets::supports_rule::{Declaration, parse_condition_or_declaration}; #[dom_struct] pub struct CSS { diff --git a/components/script/dom/csskeyframerule.rs b/components/script/dom/csskeyframerule.rs index 46dac811d9f..bd8b0a47fc0 100644 --- a/components/script/dom/csskeyframerule.rs +++ b/components/script/dom/csskeyframerule.rs @@ -12,9 +12,9 @@ use dom::cssstyledeclaration::{CSSModificationAccess, CSSStyleDeclaration, CSSSt use dom::cssstylesheet::CSSStyleSheet; use dom::window::Window; use dom_struct::dom_struct; -use style::keyframes::Keyframe; use style::shared_lock::{Locked, ToCssWithGuard}; use style::stylearc::Arc; +use style::stylesheets::keyframes_rule::Keyframe; #[dom_struct] pub struct CSSKeyframeRule { diff --git a/components/script/dom/csskeyframesrule.rs b/components/script/dom/csskeyframesrule.rs index f48abe60751..42cb4b374fa 100644 --- a/components/script/dom/csskeyframesrule.rs +++ b/components/script/dom/csskeyframesrule.rs @@ -16,10 +16,9 @@ use dom::cssrulelist::{CSSRuleList, RulesSource}; use dom::cssstylesheet::CSSStyleSheet; use dom::window::Window; use dom_struct::dom_struct; -use style::keyframes::{Keyframe, KeyframeSelector}; use style::shared_lock::{Locked, ToCssWithGuard}; use style::stylearc::Arc; -use style::stylesheets::KeyframesRule; +use style::stylesheets::keyframes_rule::{KeyframesRule, Keyframe, KeyframeSelector}; use style::values::KeyframesName; #[dom_struct] diff --git a/components/script/dom/csssupportsrule.rs b/components/script/dom/csssupportsrule.rs index cba47f0acd7..5d01c2cfdd3 100644 --- a/components/script/dom/csssupportsrule.rs +++ b/components/script/dom/csssupportsrule.rs @@ -17,7 +17,7 @@ use style::parser::{PARSING_MODE_DEFAULT, ParserContext}; use style::shared_lock::{Locked, ToCssWithGuard}; use style::stylearc::Arc; use style::stylesheets::{CssRuleType, SupportsRule}; -use style::supports::SupportsCondition; +use style::stylesheets::supports_rule::SupportsCondition; use style_traits::ToCss; #[dom_struct] diff --git a/components/script/dom/cssviewportrule.rs b/components/script/dom/cssviewportrule.rs index 4438aabb53e..a3b259a4ab5 100644 --- a/components/script/dom/cssviewportrule.rs +++ b/components/script/dom/cssviewportrule.rs @@ -12,7 +12,7 @@ use dom::window::Window; use dom_struct::dom_struct; use style::shared_lock::{Locked, ToCssWithGuard}; use style::stylearc::Arc; -use style::viewport::ViewportRule; +use style::stylesheets::ViewportRule; #[dom_struct] pub struct CSSViewportRule { diff --git a/components/script/dom/htmlmetaelement.rs b/components/script/dom/htmlmetaelement.rs index 30bce19c299..888855dc7b6 100644 --- a/components/script/dom/htmlmetaelement.rs +++ b/components/script/dom/htmlmetaelement.rs @@ -26,8 +26,7 @@ use style::attr::AttrValue; use style::media_queries::MediaList; use style::str::HTML_SPACE_CHARACTERS; use style::stylearc::Arc; -use style::stylesheets::{Stylesheet, CssRule, CssRules, Origin}; -use style::viewport::ViewportRule; +use style::stylesheets::{Stylesheet, CssRule, CssRules, Origin, ViewportRule}; #[dom_struct] pub struct HTMLMetaElement { |