Implement OwningHandle in style.

I've also PR-ed this against upstream [1], but I don't want to block on that
in case it takes a while to be merged / published.

[1] https://github.com/Kimundi/owning-ref-rs/pull/15
This commit is contained in:
Bobby Holley 2016-10-13 16:44:53 -06:00
parent 3f31ffad2f
commit d73047584c
9 changed files with 134 additions and 9 deletions

View file

@ -9,6 +9,7 @@
extern crate app_units;
extern crate cssparser;
extern crate euclid;
extern crate owning_ref;
extern crate parking_lot;
extern crate rustc_serialize;
extern crate selectors;
@ -22,6 +23,7 @@ mod attr;
mod cache;
mod logical_geometry;
mod media_queries;
mod owning_handle;
mod parsing;
mod properties;
mod selector_matching;