Rename seek_sync to seek_end

This commit is contained in:
Fernando Jiménez Moreno 2018-10-25 13:42:26 +02:00
parent aa3c911efa
commit 7bf1944007

View file

@ -1061,7 +1061,7 @@ impl HTMLMediaElement {
} }
// https://html.spec.whatwg.org/multipage/#dom-media-seek // https://html.spec.whatwg.org/multipage/#dom-media-seek
fn seek_sync(&self) { fn seek_end(&self) {
// Step 14. // Step 14.
self.seeking.set(false); self.seeking.set(false);
@ -1417,7 +1417,7 @@ impl MicrotaskRunnable for MediaElementMicrotask {
generation_id, generation_id,
} => { } => {
if generation_id == elem.generation_id.get() { if generation_id == elem.generation_id.get() {
elem.seek_sync(); elem.seek_end();
} }
}, },
} }