diff options
author | bors-servo <lbergstrom+bors@mozilla.com> | 2016-06-07 11:09:14 -0500 |
---|---|---|
committer | bors-servo <lbergstrom+bors@mozilla.com> | 2016-06-07 11:09:14 -0500 |
commit | 1e3edf3ca454b91dfdc267c5b2f4347eda9b7cb6 (patch) | |
tree | 3f9cbdf968bf83453f8f0ee5bb3c26495925346c /components/script/dom/htmltablesectionelement.rs | |
parent | f56848a0e8a9137f128088d1dd0f86e11fad841a (diff) | |
parent | aea03b2f921a41bf78791a877539f1fafab887dd (diff) | |
download | servo-1e3edf3ca454b91dfdc267c5b2f4347eda9b7cb6.tar.gz servo-1e3edf3ca454b91dfdc267c5b2f4347eda9b7cb6.zip |
Auto merge of #11656 - Ms2ger:reduce-dom-exposure, r=nox
Reduce the amount of dom code used outside the script crate.
<!-- Reviewable:start -->
This change is [<img src="https://reviewable.io/review_button.svg" height="35" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/11656)
<!-- Reviewable:end -->
Diffstat (limited to 'components/script/dom/htmltablesectionelement.rs')
-rw-r--r-- | components/script/dom/htmltablesectionelement.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/script/dom/htmltablesectionelement.rs b/components/script/dom/htmltablesectionelement.rs index bc907c16324..7b047439743 100644 --- a/components/script/dom/htmltablesectionelement.rs +++ b/components/script/dom/htmltablesectionelement.rs @@ -3,7 +3,6 @@ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ use cssparser::RGBA; -use dom::attr::AttrValue; use dom::bindings::codegen::Bindings::HTMLTableSectionElementBinding::{self, HTMLTableSectionElementMethods}; use dom::bindings::codegen::Bindings::NodeBinding::NodeMethods; use dom::bindings::error::{ErrorResult, Fallible}; @@ -18,6 +17,7 @@ use dom::htmltablerowelement::HTMLTableRowElement; use dom::node::{Node, window_from_node}; use dom::virtualmethods::VirtualMethods; use string_cache::Atom; +use style::attr::AttrValue; #[dom_struct] pub struct HTMLTableSectionElement { |