aboutsummaryrefslogtreecommitdiffstats
path: root/components/style/keyframes.rs
diff options
context:
space:
mode:
Diffstat (limited to 'components/style/keyframes.rs')
-rw-r--r--components/style/keyframes.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/components/style/keyframes.rs b/components/style/keyframes.rs
index e48e8c4e909..0fde0c64284 100644
--- a/components/style/keyframes.rs
+++ b/components/style/keyframes.rs
@@ -401,7 +401,7 @@ impl<'a, 'b> DeclarationParser for KeyframeDeclarationParser<'a, 'b> {
fn parse_value(&mut self, name: &str, input: &mut Parser) -> Result<ParsedDeclaration, ()> {
let id = try!(PropertyId::parse(name.into()));
- match PropertyDeclaration::parse(id, self.context, input, true) {
+ match ParsedDeclaration::parse(id, self.context, input, true) {
Ok(parsed) => {
// In case there is still unparsed text in the declaration, we should roll back.
if !input.is_exhausted() {