diff options
Diffstat (limited to 'src/components/script/dom/htmlquoteelement.rs')
-rw-r--r-- | src/components/script/dom/htmlquoteelement.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/script/dom/htmlquoteelement.rs b/src/components/script/dom/htmlquoteelement.rs index 3201ee15094..fd82fa9351f 100644 --- a/src/components/script/dom/htmlquoteelement.rs +++ b/src/components/script/dom/htmlquoteelement.rs @@ -2,7 +2,7 @@ * 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::utils::{DOMString, null_string, ErrorResult}; +use dom::bindings::utils::{DOMString, ErrorResult}; use dom::htmlelement::HTMLElement; pub struct HTMLQuoteElement { @@ -11,7 +11,7 @@ pub struct HTMLQuoteElement { impl HTMLQuoteElement { pub fn Cite(&self) -> DOMString { - null_string + None } pub fn SetCite(&self, _cite: &DOMString, _rv: &mut ErrorResult) { |