diff options
author | Emilio Cobos Álvarez <ecoal95@gmail.com> | 2016-01-28 14:42:15 +0100 |
---|---|---|
committer | Anthony Ramine <n.oxyde@gmail.com> | 2016-02-03 02:11:31 +0100 |
commit | a1c830f1c13d75186d8d1a759ed73a0eac433179 (patch) | |
tree | 3c76ce5a1f9f9926b9a532060581dc88d49a6b36 /components/script/dom/htmloptionelement.rs | |
parent | 9baa59a6b4de338be6cd65851694785d786cf492 (diff) | |
download | servo-a1c830f1c13d75186d8d1a759ed73a0eac433179.tar.gz servo-a1c830f1c13d75186d8d1a759ed73a0eac433179.zip |
Update rust-selectors
This commits updates rust-selectors to use the generic parser, and as
such it moves the element state into the style crate.
Diffstat (limited to 'components/script/dom/htmloptionelement.rs')
-rw-r--r-- | components/script/dom/htmloptionelement.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/script/dom/htmloptionelement.rs b/components/script/dom/htmloptionelement.rs index 3e6019384ab..cd521702a34 100644 --- a/components/script/dom/htmloptionelement.rs +++ b/components/script/dom/htmloptionelement.rs @@ -18,9 +18,9 @@ use dom::htmlselectelement::HTMLSelectElement; use dom::node::{Node, UnbindContext}; use dom::text::Text; use dom::virtualmethods::VirtualMethods; -use selectors::states::*; use std::cell::Cell; use string_cache::Atom; +use style::element_state::*; use util::str::{DOMString, split_html_space_chars, str_join}; #[dom_struct] |