mirror of
https://github.com/servo/servo.git
synced 2025-08-06 22:15:33 +01:00
Auto merge of #22005 - ferjm:media.timeline, r=ceyusa
Basic HTMLMediaElement seeking - [X] `./mach build -d` does not report any errors - [X] `./mach test-tidy` does not report any errors - [X] These changes fix #21998 This allows media seeking only when the server supports byte-range requests. <!-- Reviewable:start --> --- This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/22005) <!-- Reviewable:end -->
This commit is contained in:
commit
cb915d669a
10 changed files with 380 additions and 117 deletions
|
@ -6783,18 +6783,6 @@
|
|||
[HTMLMediaElement interface: document.createElement("video") must inherit property "buffered" with the proper type]
|
||||
expected: FAIL
|
||||
|
||||
[HTMLMediaElement interface: document.createElement("video") must inherit property "seeking" with the proper type]
|
||||
expected: FAIL
|
||||
|
||||
[HTMLMediaElement interface: document.createElement("video") must inherit property "currentTime" with the proper type]
|
||||
expected: FAIL
|
||||
|
||||
[HTMLMediaElement interface: document.createElement("video") must inherit property "fastSeek(double)" with the proper type]
|
||||
expected: FAIL
|
||||
|
||||
[HTMLMediaElement interface: calling fastSeek(double) on document.createElement("video") with too few arguments must throw TypeError]
|
||||
expected: FAIL
|
||||
|
||||
[HTMLMediaElement interface: document.createElement("video") must inherit property "getStartDate()" with the proper type]
|
||||
expected: FAIL
|
||||
|
||||
|
@ -6852,18 +6840,6 @@
|
|||
[HTMLMediaElement interface: document.createElement("audio") must inherit property "buffered" with the proper type]
|
||||
expected: FAIL
|
||||
|
||||
[HTMLMediaElement interface: document.createElement("audio") must inherit property "seeking" with the proper type]
|
||||
expected: FAIL
|
||||
|
||||
[HTMLMediaElement interface: document.createElement("audio") must inherit property "currentTime" with the proper type]
|
||||
expected: FAIL
|
||||
|
||||
[HTMLMediaElement interface: document.createElement("audio") must inherit property "fastSeek(double)" with the proper type]
|
||||
expected: FAIL
|
||||
|
||||
[HTMLMediaElement interface: calling fastSeek(double) on document.createElement("audio") with too few arguments must throw TypeError]
|
||||
expected: FAIL
|
||||
|
||||
[HTMLMediaElement interface: document.createElement("audio") must inherit property "getStartDate()" with the proper type]
|
||||
expected: FAIL
|
||||
|
||||
|
@ -7140,15 +7116,6 @@
|
|||
[HTMLMediaElement interface: attribute buffered]
|
||||
expected: FAIL
|
||||
|
||||
[HTMLMediaElement interface: attribute seeking]
|
||||
expected: FAIL
|
||||
|
||||
[HTMLMediaElement interface: attribute currentTime]
|
||||
expected: FAIL
|
||||
|
||||
[HTMLMediaElement interface: operation fastSeek(double)]
|
||||
expected: FAIL
|
||||
|
||||
[HTMLMediaElement interface: operation getStartDate()]
|
||||
expected: FAIL
|
||||
|
||||
|
|
|
@ -1,15 +0,0 @@
|
|||
[currentTime.html]
|
||||
type: testharness
|
||||
expected: TIMEOUT
|
||||
[currentTime initial value]
|
||||
expected: FAIL
|
||||
|
||||
[setting currentTime with a media controller present]
|
||||
expected: FAIL
|
||||
|
||||
[setting currentTime when readyState is HAVE_NOTHING]
|
||||
expected: FAIL
|
||||
|
||||
[setting currentTime when readyState is greater than HAVE_NOTHING]
|
||||
expected: TIMEOUT
|
||||
|
|
@ -1,6 +1,5 @@
|
|||
[seek-to-currentTime.html]
|
||||
type: testharness
|
||||
expected: TIMEOUT
|
||||
[seek to currentTime]
|
||||
expected: TIMEOUT
|
||||
expected: FAIL
|
||||
|
||||
|
|
|
@ -1,6 +1,5 @@
|
|||
[seek-to-max-value.htm]
|
||||
type: testharness
|
||||
expected: TIMEOUT
|
||||
[seek to Number.MAX_VALUE]
|
||||
expected: TIMEOUT
|
||||
expected: FAIL
|
||||
|
||||
|
|
|
@ -1,6 +1,5 @@
|
|||
[seek-to-negative-time.htm]
|
||||
type: testharness
|
||||
expected: TIMEOUT
|
||||
[seek to negative time]
|
||||
expected: TIMEOUT
|
||||
expected: FAIL
|
||||
|
||||
|
|
|
@ -5,253 +5,376 @@
|
|||
|
||||
[onabort: must be on the appropriate locations for GlobalEventHandlers]
|
||||
expected: FAIL
|
||||
|
||||
[onabort: the default value must be null]
|
||||
expected: FAIL
|
||||
|
||||
[onauxclick: must be on the appropriate locations for GlobalEventHandlers]
|
||||
expected: FAIL
|
||||
|
||||
[onauxclick: the default value must be null]
|
||||
expected: FAIL
|
||||
|
||||
[onauxclick: the content attribute must be compiled into a function as the corresponding property]
|
||||
expected: FAIL
|
||||
|
||||
[onblur: must be on the appropriate locations for GlobalEventHandlers]
|
||||
expected: FAIL
|
||||
|
||||
[onblur: the default value must be null]
|
||||
expected: FAIL
|
||||
|
||||
[oncancel: must be on the appropriate locations for GlobalEventHandlers]
|
||||
expected: FAIL
|
||||
|
||||
[oncancel: the default value must be null]
|
||||
expected: FAIL
|
||||
|
||||
[oncanplay: must be on the appropriate locations for GlobalEventHandlers]
|
||||
expected: FAIL
|
||||
|
||||
[oncanplay: the default value must be null]
|
||||
expected: FAIL
|
||||
|
||||
[oncanplaythrough: must be on the appropriate locations for GlobalEventHandlers]
|
||||
expected: FAIL
|
||||
|
||||
[oncanplaythrough: the default value must be null]
|
||||
expected: FAIL
|
||||
|
||||
[onchange: must be on the appropriate locations for GlobalEventHandlers]
|
||||
expected: FAIL
|
||||
|
||||
[onchange: the default value must be null]
|
||||
expected: FAIL
|
||||
|
||||
[onclick: must be on the appropriate locations for GlobalEventHandlers]
|
||||
expected: FAIL
|
||||
|
||||
[onclick: the default value must be null]
|
||||
expected: FAIL
|
||||
|
||||
[onclose: must be on the appropriate locations for GlobalEventHandlers]
|
||||
expected: FAIL
|
||||
|
||||
[onclose: the default value must be null]
|
||||
expected: FAIL
|
||||
|
||||
[oncontextmenu: must be on the appropriate locations for GlobalEventHandlers]
|
||||
expected: FAIL
|
||||
|
||||
[oncontextmenu: the default value must be null]
|
||||
expected: FAIL
|
||||
|
||||
[oncuechange: must be on the appropriate locations for GlobalEventHandlers]
|
||||
expected: FAIL
|
||||
|
||||
[oncuechange: the default value must be null]
|
||||
expected: FAIL
|
||||
|
||||
[ondblclick: must be on the appropriate locations for GlobalEventHandlers]
|
||||
expected: FAIL
|
||||
|
||||
[ondblclick: the default value must be null]
|
||||
expected: FAIL
|
||||
|
||||
[ondrag: must be on the appropriate locations for GlobalEventHandlers]
|
||||
expected: FAIL
|
||||
|
||||
[ondrag: the default value must be null]
|
||||
expected: FAIL
|
||||
|
||||
[ondragend: must be on the appropriate locations for GlobalEventHandlers]
|
||||
expected: FAIL
|
||||
|
||||
[ondragend: the default value must be null]
|
||||
expected: FAIL
|
||||
|
||||
[ondragenter: must be on the appropriate locations for GlobalEventHandlers]
|
||||
expected: FAIL
|
||||
|
||||
[ondragenter: the default value must be null]
|
||||
expected: FAIL
|
||||
|
||||
[ondragexit: must be on the appropriate locations for GlobalEventHandlers]
|
||||
expected: FAIL
|
||||
|
||||
[ondragexit: the default value must be null]
|
||||
expected: FAIL
|
||||
|
||||
[ondragleave: must be on the appropriate locations for GlobalEventHandlers]
|
||||
expected: FAIL
|
||||
|
||||
[ondragleave: the default value must be null]
|
||||
expected: FAIL
|
||||
|
||||
[ondragover: must be on the appropriate locations for GlobalEventHandlers]
|
||||
expected: FAIL
|
||||
|
||||
[ondragover: the default value must be null]
|
||||
expected: FAIL
|
||||
|
||||
[ondragstart: must be on the appropriate locations for GlobalEventHandlers]
|
||||
expected: FAIL
|
||||
|
||||
[ondragstart: the default value must be null]
|
||||
expected: FAIL
|
||||
|
||||
[ondrop: must be on the appropriate locations for GlobalEventHandlers]
|
||||
expected: FAIL
|
||||
|
||||
[ondrop: the default value must be null]
|
||||
expected: FAIL
|
||||
|
||||
[ondurationchange: must be on the appropriate locations for GlobalEventHandlers]
|
||||
expected: FAIL
|
||||
|
||||
[ondurationchange: the default value must be null]
|
||||
expected: FAIL
|
||||
|
||||
[onemptied: must be on the appropriate locations for GlobalEventHandlers]
|
||||
expected: FAIL
|
||||
|
||||
[onemptied: the default value must be null]
|
||||
expected: FAIL
|
||||
|
||||
[onended: must be on the appropriate locations for GlobalEventHandlers]
|
||||
expected: FAIL
|
||||
|
||||
[onended: the default value must be null]
|
||||
expected: FAIL
|
||||
|
||||
[onfocus: must be on the appropriate locations for GlobalEventHandlers]
|
||||
expected: FAIL
|
||||
|
||||
[onfocus: the default value must be null]
|
||||
expected: FAIL
|
||||
|
||||
[oninput: must be on the appropriate locations for GlobalEventHandlers]
|
||||
expected: FAIL
|
||||
|
||||
[oninput: the default value must be null]
|
||||
expected: FAIL
|
||||
|
||||
[oninvalid: must be on the appropriate locations for GlobalEventHandlers]
|
||||
expected: FAIL
|
||||
|
||||
[oninvalid: the default value must be null]
|
||||
expected: FAIL
|
||||
|
||||
[onkeydown: must be on the appropriate locations for GlobalEventHandlers]
|
||||
expected: FAIL
|
||||
|
||||
[onkeydown: the default value must be null]
|
||||
expected: FAIL
|
||||
|
||||
[onkeypress: must be on the appropriate locations for GlobalEventHandlers]
|
||||
expected: FAIL
|
||||
|
||||
[onkeypress: the default value must be null]
|
||||
expected: FAIL
|
||||
|
||||
[onkeyup: must be on the appropriate locations for GlobalEventHandlers]
|
||||
expected: FAIL
|
||||
|
||||
[onkeyup: the default value must be null]
|
||||
expected: FAIL
|
||||
|
||||
[onload: must be on the appropriate locations for GlobalEventHandlers]
|
||||
expected: FAIL
|
||||
|
||||
[onload: the default value must be null]
|
||||
expected: FAIL
|
||||
|
||||
[onloadeddata: must be on the appropriate locations for GlobalEventHandlers]
|
||||
expected: FAIL
|
||||
|
||||
[onloadeddata: the default value must be null]
|
||||
expected: FAIL
|
||||
|
||||
[onloadedmetadata: must be on the appropriate locations for GlobalEventHandlers]
|
||||
expected: FAIL
|
||||
|
||||
[onloadedmetadata: the default value must be null]
|
||||
expected: FAIL
|
||||
[onloadedmetadata: the content attribute must be compiled into a function as the corresponding property]
|
||||
expected: FAIL
|
||||
|
||||
[onloadend: must be on the appropriate locations for GlobalEventHandlers]
|
||||
expected: FAIL
|
||||
|
||||
[onloadend: the default value must be null]
|
||||
expected: FAIL
|
||||
|
||||
[onloadend: the content attribute must be compiled into a function as the corresponding property]
|
||||
expected: FAIL
|
||||
|
||||
[onloadstart: must be on the appropriate locations for GlobalEventHandlers]
|
||||
expected: FAIL
|
||||
|
||||
[onloadstart: the default value must be null]
|
||||
expected: FAIL
|
||||
|
||||
[onmousedown: must be on the appropriate locations for GlobalEventHandlers]
|
||||
expected: FAIL
|
||||
|
||||
[onmousedown: the default value must be null]
|
||||
expected: FAIL
|
||||
|
||||
[onmouseenter: must be on the appropriate locations for GlobalEventHandlers]
|
||||
expected: FAIL
|
||||
|
||||
[onmouseenter: the default value must be null]
|
||||
expected: FAIL
|
||||
|
||||
[onmouseleave: must be on the appropriate locations for GlobalEventHandlers]
|
||||
expected: FAIL
|
||||
|
||||
[onmouseleave: the default value must be null]
|
||||
expected: FAIL
|
||||
|
||||
[onmousemove: must be on the appropriate locations for GlobalEventHandlers]
|
||||
expected: FAIL
|
||||
|
||||
[onmousemove: the default value must be null]
|
||||
expected: FAIL
|
||||
|
||||
[onmouseout: must be on the appropriate locations for GlobalEventHandlers]
|
||||
expected: FAIL
|
||||
|
||||
[onmouseout: the default value must be null]
|
||||
expected: FAIL
|
||||
|
||||
[onmouseover: must be on the appropriate locations for GlobalEventHandlers]
|
||||
expected: FAIL
|
||||
|
||||
[onmouseover: the default value must be null]
|
||||
expected: FAIL
|
||||
|
||||
[onmouseup: must be on the appropriate locations for GlobalEventHandlers]
|
||||
expected: FAIL
|
||||
|
||||
[onmouseup: the default value must be null]
|
||||
expected: FAIL
|
||||
|
||||
[onwheel: must be on the appropriate locations for GlobalEventHandlers]
|
||||
expected: FAIL
|
||||
|
||||
[onwheel: the default value must be null]
|
||||
expected: FAIL
|
||||
|
||||
[onpause: must be on the appropriate locations for GlobalEventHandlers]
|
||||
expected: FAIL
|
||||
|
||||
[onpause: the default value must be null]
|
||||
expected: FAIL
|
||||
|
||||
[onplay: must be on the appropriate locations for GlobalEventHandlers]
|
||||
expected: FAIL
|
||||
|
||||
[onplay: the default value must be null]
|
||||
expected: FAIL
|
||||
|
||||
[onplaying: must be on the appropriate locations for GlobalEventHandlers]
|
||||
expected: FAIL
|
||||
|
||||
[onplaying: the default value must be null]
|
||||
expected: FAIL
|
||||
|
||||
[onprogress: must be on the appropriate locations for GlobalEventHandlers]
|
||||
expected: FAIL
|
||||
|
||||
[onprogress: the default value must be null]
|
||||
expected: FAIL
|
||||
|
||||
[onratechange: must be on the appropriate locations for GlobalEventHandlers]
|
||||
expected: FAIL
|
||||
|
||||
[onratechange: the default value must be null]
|
||||
expected: FAIL
|
||||
|
||||
[onreset: must be on the appropriate locations for GlobalEventHandlers]
|
||||
expected: FAIL
|
||||
|
||||
[onreset: the default value must be null]
|
||||
expected: FAIL
|
||||
|
||||
[onresize: must be on the appropriate locations for GlobalEventHandlers]
|
||||
expected: FAIL
|
||||
|
||||
[onresize: the default value must be null]
|
||||
expected: FAIL
|
||||
|
||||
[onscroll: must be on the appropriate locations for GlobalEventHandlers]
|
||||
expected: FAIL
|
||||
|
||||
[onscroll: the default value must be null]
|
||||
expected: FAIL
|
||||
|
||||
[onsecuritypolicyviolation: must be on the appropriate locations for GlobalEventHandlers]
|
||||
expected: FAIL
|
||||
|
||||
[onsecuritypolicyviolation: the default value must be null]
|
||||
expected: FAIL
|
||||
|
||||
[onsecuritypolicyviolation: the content attribute must be compiled into a function as the corresponding property]
|
||||
expected: FAIL
|
||||
|
||||
[onseeked: must be on the appropriate locations for GlobalEventHandlers]
|
||||
expected: FAIL
|
||||
|
||||
[onseeked: the default value must be null]
|
||||
expected: FAIL
|
||||
|
||||
[onseeking: must be on the appropriate locations for GlobalEventHandlers]
|
||||
expected: FAIL
|
||||
|
||||
[onseeking: the default value must be null]
|
||||
expected: FAIL
|
||||
|
||||
[onselect: must be on the appropriate locations for GlobalEventHandlers]
|
||||
expected: FAIL
|
||||
|
||||
[onselect: the default value must be null]
|
||||
expected: FAIL
|
||||
|
||||
[onstalled: must be on the appropriate locations for GlobalEventHandlers]
|
||||
expected: FAIL
|
||||
|
||||
[onstalled: the default value must be null]
|
||||
expected: FAIL
|
||||
|
||||
[onsubmit: must be on the appropriate locations for GlobalEventHandlers]
|
||||
expected: FAIL
|
||||
|
||||
[onsubmit: the default value must be null]
|
||||
expected: FAIL
|
||||
|
||||
[onsuspend: must be on the appropriate locations for GlobalEventHandlers]
|
||||
expected: FAIL
|
||||
|
||||
[onsuspend: the default value must be null]
|
||||
expected: FAIL
|
||||
|
||||
[ontimeupdate: must be on the appropriate locations for GlobalEventHandlers]
|
||||
expected: FAIL
|
||||
|
||||
[ontimeupdate: the default value must be null]
|
||||
expected: FAIL
|
||||
|
||||
[ontoggle: must be on the appropriate locations for GlobalEventHandlers]
|
||||
expected: FAIL
|
||||
|
||||
[ontoggle: the default value must be null]
|
||||
expected: FAIL
|
||||
|
||||
[onvolumechange: must be on the appropriate locations for GlobalEventHandlers]
|
||||
expected: FAIL
|
||||
|
||||
[onvolumechange: the default value must be null]
|
||||
expected: FAIL
|
||||
|
||||
[onwaiting: must be on the appropriate locations for GlobalEventHandlers]
|
||||
expected: FAIL
|
||||
|
||||
[onwaiting: the default value must be null]
|
||||
expected: FAIL
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue