Move DOMString into servo_util.

This commit is contained in:
Ms2ger 2014-02-14 12:48:51 +01:00
parent f1de0b7381
commit 59184bf6e1
96 changed files with 177 additions and 131 deletions

View file

@ -3,13 +3,14 @@
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
use dom::bindings::codegen::HTMLElementBinding;
use dom::bindings::utils::{DOMString, ErrorResult, Fallible};
use dom::bindings::utils::{Fallible, ErrorResult};
use dom::document::AbstractDocument;
use dom::element::{Element, ElementTypeId, HTMLElementTypeId};
use dom::node::{AbstractNode, Node};
use js::jsapi::{JSContext, JSVal};
use js::JSVAL_NULL;
use servo_util::namespace;
use servo_util::str::DOMString;
pub struct HTMLElement {
element: Element