diff options
author | bors-servo <lbergstrom+bors@mozilla.com> | 2017-05-02 20:01:10 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-05-02 20:01:10 -0500 |
commit | 7b1006936a27232fb77fef5893cc141e66bb12b7 (patch) | |
tree | 750a15b93482d99f1aadd7afe507dd910516a6d1 /components/layout/query.rs | |
parent | 536d63c67028c7368dff780945626283d2c48f1c (diff) | |
parent | fd1c814e7812e68e1207165c9387ddcfd8a6379b (diff) | |
download | servo-7b1006936a27232fb77fef5893cc141e66bb12b7.tar.gz servo-7b1006936a27232fb77fef5893cc141e66bb12b7.zip |
Auto merge of #16702 - bholley:custom_arc, r=emilio
Use a custom arc in the style system
See https://bugzilla.mozilla.org/show_bug.cgi?id=1360889
<!-- 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/16702)
<!-- Reviewable:end -->
Diffstat (limited to 'components/layout/query.rs')
-rw-r--r-- | components/layout/query.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/layout/query.rs b/components/layout/query.rs index 92c3a1525dd..6b594066963 100644 --- a/components/layout/query.rs +++ b/components/layout/query.rs @@ -55,7 +55,7 @@ pub struct LayoutThreadData { pub display_list: Option<Arc<DisplayList>>, /// Performs CSS selector matching and style resolution. - pub stylist: Arc<Stylist>, + pub stylist: ::StyleArc<Stylist>, /// A queued response for the union of the content boxes of a node. pub content_box_response: Option<Rect<Au>>, |