diff --git a/components/script/dom/htmlmediaelement.rs b/components/script/dom/htmlmediaelement.rs
index baf5607ef2b..69a82754118 100644
--- a/components/script/dom/htmlmediaelement.rs
+++ b/components/script/dom/htmlmediaelement.rs
@@ -35,7 +35,7 @@ use dom::virtualmethods::VirtualMethods;
use dom_struct::dom_struct;
use fetch::FetchCanceller;
use html5ever::{LocalName, Prefix};
-use hyper::header::{AcceptRanges, ByteRangeSpec, ContentLength, Headers, Range as HyperRange, RangeUnit};
+use hyper::header::{ByteRangeSpec, ContentLength, Headers, Range as HyperRange, RangeUnit};
use ipc_channel::ipc;
use ipc_channel::router::ROUTER;
use microtask::{Microtask, MicrotaskRunnable};
@@ -176,13 +176,6 @@ pub struct HTMLMediaElement {
default_playback_start_position: Cell,
/// https://html.spec.whatwg.org/multipage/#dom-media-seeking
seeking: Cell,
- /// Tells wether the current stream is seekable or not.
- /// XXX(ferjm) This will eventually be changed by a TimeRange.
- /// For now, we only consider a stream seekable if the server
- /// supports byte-range requests. This should eventually change to
- /// allow seeking to buffered content as well, even if the server
- /// does not support byte-range requests.
- seekable: Cell,
/// URL of the media resource, if any.
resource_url: DomRefCell