Move DOMString back to script

This entirely removes the 'non-geckolib' feature of the util crate.
This commit is contained in:
Anthony Ramine 2016-05-22 13:25:07 +02:00
parent 7b467ee52d
commit cdc7bca944
188 changed files with 501 additions and 529 deletions

View file

@ -5,6 +5,7 @@
//! Common handling of keyboard input and state management for text input controls
use clipboard_provider::ClipboardProvider;
use dom::bindings::str::DOMString;
use dom::keyboardevent::{KeyboardEvent, key_value};
use msg::constellation_msg::{ALT, CONTROL, SHIFT, SUPER};
use msg::constellation_msg::{Key, KeyModifiers};
@ -13,7 +14,6 @@ use std::cmp::{max, min};
use std::default::Default;
use std::ops::Range;
use std::usize;
use util::str::DOMString;
#[derive(Copy, Clone, PartialEq)]
pub enum Selection {