diff options
author | Bobby Holley <bobbyholley@gmail.com> | 2016-03-04 16:53:57 -0800 |
---|---|---|
committer | Bobby Holley <bobbyholley@gmail.com> | 2016-03-24 11:49:46 -0700 |
commit | 5c749127cc4e56a89ceb19f2cbe44693cedd4eba (patch) | |
tree | 7f591ecda7b8ffbe4da483d49ef8e8f5bf3157e1 /components/gfx/display_list/mod.rs | |
parent | 16d2e9af65d6bc62fb73f7ab5152ad6723eb9d28 (diff) | |
download | servo-5c749127cc4e56a89ceb19f2cbe44693cedd4eba.tar.gz servo-5c749127cc4e56a89ceb19f2cbe44693cedd4eba.zip |
Introduce traits for style structs and computed values.
Diffstat (limited to 'components/gfx/display_list/mod.rs')
-rw-r--r-- | components/gfx/display_list/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/gfx/display_list/mod.rs b/components/gfx/display_list/mod.rs index 7bba2ce0e53..747543dd7fc 100644 --- a/components/gfx/display_list/mod.rs +++ b/components/gfx/display_list/mod.rs @@ -41,7 +41,7 @@ use std::ops::{Deref, DerefMut}; use std::sync::Arc; use style::computed_values::{border_style, cursor, filter, image_rendering, mix_blend_mode}; use style::computed_values::{pointer_events}; -use style::properties::ComputedValues; +use style::properties::{ComputedValues, TComputedValues}; use style_traits::cursor::Cursor; use text::TextRun; use text::glyph::CharIndex; |