Skip to content

Commit

Permalink
Bug 1476054: Fix Servo build and unit tests build. r=me
Browse files Browse the repository at this point in the history
MozReview-Commit-ID: Azyet6aYLez
  • Loading branch information
emilio committed Jul 17, 2018
1 parent 50a4dc1 commit ffaae47
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 262 deletions.
259 changes: 0 additions & 259 deletions servo/tests/unit/style/keyframes.rs

This file was deleted.

1 change: 0 additions & 1 deletion servo/tests/unit/style/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ extern crate test;
mod animated_properties;
mod attr;
mod custom_properties;
mod keyframes;
mod logical_geometry;
mod parsing;
mod properties;
Expand Down
4 changes: 2 additions & 2 deletions servo/tests/unit/style/stylesheets.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ use std::sync::atomic::AtomicBool;
use style::context::QuirksMode;
use style::error_reporting::{ParseErrorReporter, ContextualParseError};
use style::media_queries::MediaList;
use style::properties::{CSSWideKeyword, CustomDeclaration, DeclarationSource};
use style::properties::{CSSWideKeyword, CustomDeclaration, DeclarationPushMode};
use style::properties::{DeclaredValueOwned, Importance};
use style::properties::{PropertyDeclaration, PropertyDeclarationBlock};
use style::properties::longhands::{self, animation_timing_function};
Expand All @@ -34,7 +34,7 @@ pub fn block_from<I>(iterable: I) -> PropertyDeclarationBlock
where I: IntoIterator<Item=(PropertyDeclaration, Importance)> {
let mut block = PropertyDeclarationBlock::new();
for (d, i) in iterable {
block.push(d, i, DeclarationSource::CssOm);
block.push(d, i, DeclarationPushMode::Append);
}
block
}
Expand Down

0 comments on commit ffaae47

Please sign in to comment.