diff options
author | Tetsuharu OHZEKI <saneyuki.snyk@gmail.com> | 2014-09-10 14:07:55 +0900 |
---|---|---|
committer | Tetsuharu OHZEKI <saneyuki.snyk@gmail.com> | 2014-09-11 04:54:38 +0900 |
commit | b73b06b9a82f6a02fdc4859776af1c9929d95641 (patch) | |
tree | 39b6fee8400b319ea89ee9044d59b146f4adaf34 /components/script/html/hubbub_html_parser.rs | |
parent | 842823e321fdadcff0ef4e7c077873b1d83a5289 (diff) | |
download | servo-b73b06b9a82f6a02fdc4859776af1c9929d95641.tar.gz servo-b73b06b9a82f6a02fdc4859776af1c9929d95641.zip |
Move Attr helper methods to AttrHelpers trait to avoid to touch them from layout task.
Diffstat (limited to 'components/script/html/hubbub_html_parser.rs')
-rw-r--r-- | components/script/html/hubbub_html_parser.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/components/script/html/hubbub_html_parser.rs b/components/script/html/hubbub_html_parser.rs index 8b49a2bae03..6862ef4a492 100644 --- a/components/script/html/hubbub_html_parser.rs +++ b/components/script/html/hubbub_html_parser.rs @@ -2,6 +2,7 @@ * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ +use dom::attr::AttrHelpers; use dom::bindings::codegen::Bindings::AttrBinding::AttrMethods; use dom::bindings::codegen::Bindings::NodeBinding::NodeMethods; use dom::bindings::codegen::InheritTypes::{NodeBase, NodeCast, TextCast}; |