aboutsummaryrefslogtreecommitdiffstats
path: root/tests/unit
diff options
context:
space:
mode:
authorHiroyuki Ikezoe <hikezoe@mozilla.com>2017-09-27 12:49:15 +0900
committerHiroyuki Ikezoe <hikezoe@mozilla.com>2017-09-27 18:27:48 +0900
commitded0c713dbe2fccfb481b8e6776b536d92a42e8e (patch)
treee7c89ad54d17440f448385b7b4f32b09fec49b41 /tests/unit
parent54f8a131ea50fe8b0480d9f146acc97e13bc45d6 (diff)
downloadservo-ded0c713dbe2fccfb481b8e6776b536d92a42e8e.tar.gz
servo-ded0c713dbe2fccfb481b8e6776b536d92a42e8e.zip
Store custom properties in keyframes into servo's PropertyDeclarationBlock
Diffstat (limited to 'tests/unit')
-rw-r--r--tests/unit/stylo/Cargo.toml1
-rw-r--r--tests/unit/stylo/lib.rs1
2 files changed, 2 insertions, 0 deletions
diff --git a/tests/unit/stylo/Cargo.toml b/tests/unit/stylo/Cargo.toml
index 2d430835681..40248fb0420 100644
--- a/tests/unit/stylo/Cargo.toml
+++ b/tests/unit/stylo/Cargo.toml
@@ -22,6 +22,7 @@ log = {version = "0.3.5", features = ["release_max_level_info"]}
malloc_size_of = {path = "../../../components/malloc_size_of"}
selectors = {path = "../../../components/selectors", features = ["gecko_like_types"]}
size_of_test = {path = "../../../components/size_of_test"}
+smallvec = "0.4"
style_traits = {path = "../../../components/style_traits"}
style = {path = "../../../components/style", features = ["gecko"]}
diff --git a/tests/unit/stylo/lib.rs b/tests/unit/stylo/lib.rs
index a00d6d44c55..6b460558953 100644
--- a/tests/unit/stylo/lib.rs
+++ b/tests/unit/stylo/lib.rs
@@ -9,6 +9,7 @@ extern crate geckoservo;
#[macro_use] extern crate log;
extern crate malloc_size_of;
extern crate selectors;
+extern crate smallvec;
#[macro_use] extern crate size_of_test;
#[macro_use] extern crate style;
extern crate style_traits;