diff options
author | Hiroyuki Ikezoe <hikezoe@mozilla.com> | 2017-09-27 12:49:15 +0900 |
---|---|---|
committer | Hiroyuki Ikezoe <hikezoe@mozilla.com> | 2017-09-27 18:27:48 +0900 |
commit | ded0c713dbe2fccfb481b8e6776b536d92a42e8e (patch) | |
tree | e7c89ad54d17440f448385b7b4f32b09fec49b41 /tests/unit | |
parent | 54f8a131ea50fe8b0480d9f146acc97e13bc45d6 (diff) | |
download | servo-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.toml | 1 | ||||
-rw-r--r-- | tests/unit/stylo/lib.rs | 1 |
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; |