diff options
author | bors-servo <release+servo@mozilla.com> | 2013-10-16 15:37:42 -0700 |
---|---|---|
committer | bors-servo <release+servo@mozilla.com> | 2013-10-16 15:37:42 -0700 |
commit | 6db57e6f72c85cd5233f431817f9344aed8eab87 (patch) | |
tree | ce0dad28d6ad61f95c63c25e8a2dc30859edfd96 /src/components/script/dom/document.rs | |
parent | c5399454016b9efb3ea4f3a073e9248fdfd073be (diff) | |
parent | a509755447ccc1c76956698fc7ebd6ced05c7711 (diff) | |
download | servo-6db57e6f72c85cd5233f431817f9344aed8eab87.tar.gz servo-6db57e6f72c85cd5233f431817f9344aed8eab87.zip |
auto merge of #1075 : SimonSapin/servo/newnewcss, r=kmcallister
I believe this is all the preparatory work discussed in #1006 and #1057: The new 'style' crate implements the whole style system (including parsing, matching and cascading) and only depends on cssparser and util, so that gfx, script and main can all depend on it.
Next: porting the layout code to this. (Really, this time! I think.)
Diffstat (limited to 'src/components/script/dom/document.rs')
-rw-r--r-- | src/components/script/dom/document.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/script/dom/document.rs b/src/components/script/dom/document.rs index 4687205066d..62fab67b51c 100644 --- a/src/components/script/dom/document.rs +++ b/src/components/script/dom/document.rs @@ -24,7 +24,7 @@ use html::hubbub_html_parser::build_element_from_tag; use js::jsapi::{JSObject, JSContext, JSVal}; use js::jsapi::{JSTRACE_OBJECT, JSTracer, JS_CallTracer}; use js::glue::RUST_OBJECT_TO_JSVAL; -use servo_util::tree::TreeNodeRef; +use servo_util::tree::{TreeNodeRef, ElementLike}; use std::hashmap::HashMap; |