diff options
Diffstat (limited to 'components/style/stylesheets/keyframes_rule.rs')
-rw-r--r-- | components/style/stylesheets/keyframes_rule.rs | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/components/style/stylesheets/keyframes_rule.rs b/components/style/stylesheets/keyframes_rule.rs index ffd41551394..0824db67b5d 100644 --- a/components/style/stylesheets/keyframes_rule.rs +++ b/components/style/stylesheets/keyframes_rule.rs @@ -4,24 +4,24 @@ //! Keyframes: https://drafts.csswg.org/css-animations/#keyframes +use crate::error_reporting::ContextualParseError; +use crate::parser::ParserContext; +use crate::properties::longhands::transition_timing_function::single_value::SpecifiedValue as SpecifiedTimingFunction; +use crate::properties::LonghandIdSet; +use crate::properties::{Importance, PropertyDeclaration}; +use crate::properties::{LonghandId, PropertyDeclarationBlock, PropertyId}; +use crate::properties::{PropertyDeclarationId, SourcePropertyDeclaration}; +use crate::shared_lock::{DeepCloneParams, DeepCloneWithLock, SharedRwLock, SharedRwLockReadGuard}; +use crate::shared_lock::{Locked, ToCssWithGuard}; +use crate::str::CssStringWriter; +use crate::stylesheets::rule_parser::VendorPrefix; +use crate::stylesheets::{CssRuleType, StylesheetContents}; +use crate::values::{serialize_percentage, KeyframesName}; use cssparser::{parse_one_rule, DeclarationListParser, DeclarationParser, SourceLocation, Token}; use cssparser::{AtRuleParser, CowRcStr, Parser, ParserInput, QualifiedRuleParser, RuleListParser}; -use error_reporting::ContextualParseError; -use parser::ParserContext; -use properties::longhands::transition_timing_function::single_value::SpecifiedValue as SpecifiedTimingFunction; -use properties::LonghandIdSet; -use properties::{Importance, PropertyDeclaration}; -use properties::{LonghandId, PropertyDeclarationBlock, PropertyId}; -use properties::{PropertyDeclarationId, SourcePropertyDeclaration}; use servo_arc::Arc; -use shared_lock::{DeepCloneParams, DeepCloneWithLock, SharedRwLock, SharedRwLockReadGuard}; -use shared_lock::{Locked, ToCssWithGuard}; use std::fmt::{self, Write}; -use str::CssStringWriter; use style_traits::{CssWriter, ParseError, ParsingMode, StyleParseErrorKind, ToCss}; -use stylesheets::rule_parser::VendorPrefix; -use stylesheets::{CssRuleType, StylesheetContents}; -use values::{serialize_percentage, KeyframesName}; /// A [`@keyframes`][keyframes] rule. /// |