diff options
author | Manish Goregaokar <manishsmail@gmail.com> | 2017-01-11 12:22:11 -0800 |
---|---|---|
committer | Manish Goregaokar <manishsmail@gmail.com> | 2017-01-11 12:22:11 -0800 |
commit | d3be70b4de755ead9e6fef6995c8085e0763b88a (patch) | |
tree | d1b56104bbe9757fa0e3da7240e6495906584a1a /components/script/test.rs | |
parent | 980dde7e1533414f6eb3be86d12311d21ace8434 (diff) | |
download | servo-d3be70b4de755ead9e6fef6995c8085e0763b88a.tar.gz servo-d3be70b4de755ead9e6fef6995c8085e0763b88a.zip |
Make area structs accessible from area tests
Diffstat (limited to 'components/script/test.rs')
-rw-r--r-- | components/script/test.rs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/components/script/test.rs b/components/script/test.rs index 31353b5ffa3..83523c47817 100644 --- a/components/script/test.rs +++ b/components/script/test.rs @@ -10,6 +10,10 @@ pub use dom::bindings::cell::DOMRefCell; pub use dom::bindings::js::JS; pub use dom::node::Node; +pub mod area { + pub use dom::htmlareaelement::{Area, Shape}; +} + pub mod size_of { use dom::characterdata::CharacterData; use dom::element::Element; |