diff options
author | Emilio Cobos Álvarez <me@emiliocobos.me> | 2016-06-27 08:52:33 -0700 |
---|---|---|
committer | Emilio Cobos Álvarez <me@emiliocobos.me> | 2016-06-28 15:20:59 +0000 |
commit | 2d566ef0ef15b8339de904d9e179f3988ece0ea5 (patch) | |
tree | bebfb836c03088f89a4484b985ec1a736c2a72c5 /components/style/servo.rs | |
parent | 46eec458867adaa956110784b6ae230e68e9a4e9 (diff) | |
download | servo-2d566ef0ef15b8339de904d9e179f3988ece0ea5.tar.gz servo-2d566ef0ef15b8339de904d9e179f3988ece0ea5.zip |
style: Fix parsing and add generated keyframes
Diffstat (limited to 'components/style/servo.rs')
-rw-r--r-- | components/style/servo.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/components/style/servo.rs b/components/style/servo.rs index 8278713d26f..b592104832a 100644 --- a/components/style/servo.rs +++ b/components/style/servo.rs @@ -1,9 +1,9 @@ /* This Source Code Form is subject to the terms of the Mozilla Public * 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/. */ - //! Concrete types for servo Style implementation +use animation; use context; use data; use properties::ServoComputedValues; @@ -15,3 +15,4 @@ pub type Stylesheet = stylesheets::Stylesheet<ServoSelectorImpl>; pub type PrivateStyleData = data::PrivateStyleData<ServoSelectorImpl, ServoComputedValues>; pub type Stylist = selector_matching::Stylist<ServoSelectorImpl>; pub type SharedStyleContext = context::SharedStyleContext<ServoSelectorImpl>; +pub type Animation = animation::Animation<ServoSelectorImpl>; |