diff options
author | Bobby Holley <bobbyholley@gmail.com> | 2017-06-12 11:13:04 -0700 |
---|---|---|
committer | Bobby Holley <bobbyholley@gmail.com> | 2017-06-12 12:13:21 -0700 |
commit | a98fff1af85f377787cff046bce07c1a93e79f9e (patch) | |
tree | 1776f4c41faa932e657a3396f3a778294e0a7f46 /components/script/layout_wrapper.rs | |
parent | 0caad2ffdc0879c12474a500d41f87697e8cfa5c (diff) | |
download | servo-a98fff1af85f377787cff046bce07c1a93e79f9e.tar.gz servo-a98fff1af85f377787cff046bce07c1a93e79f9e.zip |
Hoist ApplicableDeclaration{Block,List} into a separate file.
MozReview-Commit-ID: EXnAzfyoZ1e
Diffstat (limited to 'components/script/layout_wrapper.rs')
-rw-r--r-- | components/script/layout_wrapper.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/script/layout_wrapper.rs b/components/script/layout_wrapper.rs index 15589619e17..916b9f5a329 100644 --- a/components/script/layout_wrapper.rs +++ b/components/script/layout_wrapper.rs @@ -61,6 +61,7 @@ use std::marker::PhantomData; use std::mem::transmute; use std::sync::atomic::Ordering; use style; +use style::applicable_declarations::ApplicableDeclarationBlock; use style::attr::AttrValue; use style::computed_values::display; use style::context::{QuirksMode, SharedStyleContext}; @@ -76,7 +77,6 @@ use style::shared_lock::{SharedRwLock as StyleSharedRwLock, Locked as StyleLocke use style::sink::Push; use style::str::is_whitespace; use style::stylearc::Arc; -use style::stylist::ApplicableDeclarationBlock; #[derive(Copy, Clone)] pub struct ServoLayoutNode<'a> { |