diff options
Diffstat (limited to 'src/components/script/dom/htmlvideoelement.rs')
-rw-r--r-- | src/components/script/dom/htmlvideoelement.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/script/dom/htmlvideoelement.rs b/src/components/script/dom/htmlvideoelement.rs index 19a6a546fed..68f34b28665 100644 --- a/src/components/script/dom/htmlvideoelement.rs +++ b/src/components/script/dom/htmlvideoelement.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::htmlmediaelement::HTMLMediaElement; pub struct HTMLVideoElement { @@ -33,7 +33,7 @@ impl HTMLVideoElement { } pub fn Poster(&self) -> DOMString { - null_string + None } pub fn SetPoster(&mut self, _poster: &DOMString, _rv: &ErrorResult) { |