aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/dom/htmloptionelement.rs
diff options
context:
space:
mode:
authorAnthony Ramine <n.oxyde@gmail.com>2016-05-22 13:25:07 +0200
committerAnthony Ramine <n.oxyde@gmail.com>2016-05-24 10:54:57 +0200
commitcdc7bca944b6ffebc59169d42331fffbee7f71ee (patch)
treeb727287bb85a82b9ff16c1eac1737d09749be2f4 /components/script/dom/htmloptionelement.rs
parent7b467ee52d59d1d2f078948acc9e4d188eac7338 (diff)
downloadservo-cdc7bca944b6ffebc59169d42331fffbee7f71ee.tar.gz
servo-cdc7bca944b6ffebc59169d42331fffbee7f71ee.zip
Move DOMString back to script
This entirely removes the 'non-geckolib' feature of the util crate.
Diffstat (limited to 'components/script/dom/htmloptionelement.rs')
-rw-r--r--components/script/dom/htmloptionelement.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/components/script/dom/htmloptionelement.rs b/components/script/dom/htmloptionelement.rs
index cd521702a34..67cb4983258 100644
--- a/components/script/dom/htmloptionelement.rs
+++ b/components/script/dom/htmloptionelement.rs
@@ -9,6 +9,7 @@ use dom::bindings::codegen::Bindings::HTMLOptionElementBinding::HTMLOptionElemen
use dom::bindings::codegen::Bindings::NodeBinding::NodeMethods;
use dom::bindings::inheritance::Castable;
use dom::bindings::js::Root;
+use dom::bindings::str::DOMString;
use dom::characterdata::CharacterData;
use dom::document::Document;
use dom::element::{AttributeMutation, Element};
@@ -21,7 +22,7 @@ use dom::virtualmethods::VirtualMethods;
use std::cell::Cell;
use string_cache::Atom;
use style::element_state::*;
-use util::str::{DOMString, split_html_space_chars, str_join};
+use util::str::{split_html_space_chars, str_join};
#[dom_struct]
pub struct HTMLOptionElement {