diff options
author | bors-servo <lbergstrom+bors@mozilla.com> | 2017-06-12 12:41:39 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-06-12 12:41:39 -0700 |
commit | 75d6796cbd1274c3711472d1a8b728c3cf6ac70c (patch) | |
tree | 3cc7ae11095bff094073c5581c94f03603ef2946 /components/script/layout_wrapper.rs | |
parent | dfffc726919c9f8f553ed02f825d20635dadbadb (diff) | |
parent | 2d412d4e3af742fce0621de797f4109fe2fa8213 (diff) | |
download | servo-75d6796cbd1274c3711472d1a8b728c3cf6ac70c.tar.gz servo-75d6796cbd1274c3711472d1a8b728c3cf6ac70c.zip |
Auto merge of #17281 - bholley:shrink_rule_again, r=emilio
Pack bloom filter hashes better and save a word on Rule
https://bugzilla.mozilla.org/show_bug.cgi?id=1371949
<!-- Reviewable:start -->
---
This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/17281)
<!-- Reviewable:end -->
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> { |