diff options
Diffstat (limited to 'components/script/parse/mod.rs')
-rw-r--r-- | components/script/parse/mod.rs | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/components/script/parse/mod.rs b/components/script/parse/mod.rs index 52493d3bb71..30f6bc158a6 100644 --- a/components/script/parse/mod.rs +++ b/components/script/parse/mod.rs @@ -2,7 +2,6 @@ * 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::bindings::cell::DOMRefCell; use dom::bindings::inheritance::Castable; use dom::bindings::js::{JS, Root}; use dom::bindings::refcounted::Trusted; @@ -147,13 +146,6 @@ impl<'a> ParserRef<'a> { } } - pub fn pending_input(&self) -> &DOMRefCell<Vec<String>> { - match *self { - ParserRef::HTML(parser) => parser.pending_input(), - ParserRef::XML(parser) => parser.pending_input(), - } - } - pub fn set_plaintext_state(&self) { match *self { ParserRef::HTML(parser) => parser.set_plaintext_state(), |