Upgraded to SM 60

This commit is contained in:
Alan Jeffrey 2018-06-01 17:24:25 -05:00 committed by Josh Matthews
parent d34403047e
commit 74c1e00d81
290 changed files with 26572 additions and 1178 deletions

View file

@ -2,4 +2,8 @@
type: testharness
[Request signals & the cache API]
expected: FAIL
[Signals are not stored in the cache API]
expected: FAIL
[Signals are not stored in the cache API, even if they're already aborted]
expected: FAIL

View file

@ -5,6 +5,100 @@
[general]
expected: FAIL
[Aborting rejects with AbortError]
expected: FAIL
[Aborting rejects with AbortError - no-cors]
expected: FAIL
[TypeError from request constructor takes priority - RequestInit's window is not null]
expected: FAIL
[TypeError from request constructor takes priority - Input URL is not valid]
expected: FAIL
[TypeError from request constructor takes priority - Input URL has credentials]
expected: FAIL
[TypeError from request constructor takes priority - RequestInit's mode is navigate]
expected: FAIL
[TypeError from request constructor takes priority - RequestInit's referrer is invalid]
expected: FAIL
[TypeError from request constructor takes priority - RequestInit's method is forbidden]
expected: FAIL
[TypeError from request constructor takes priority - RequestInit's mode is no-cors and method is not simple]
expected: FAIL
[TypeError from request constructor takes priority - RequestInit's cache mode is only-if-cached and mode is not same-origin]
expected: FAIL
[TypeError from request constructor takes priority - Request with cache mode: only-if-cached and fetch mode cors]
expected: FAIL
[TypeError from request constructor takes priority - Request with cache mode: only-if-cached and fetch mode no-cors]
expected: FAIL
[TypeError from request constructor takes priority - Bad referrerPolicy init parameter value]
expected: FAIL
[TypeError from request constructor takes priority - Bad mode init parameter value]
expected: FAIL
[TypeError from request constructor takes priority - Bad credentials init parameter value]
expected: FAIL
[TypeError from request constructor takes priority - Bad cache init parameter value]
expected: FAIL
[TypeError from request constructor takes priority - Bad redirect init parameter value]
expected: FAIL
[Request objects have a signal property]
expected: FAIL
[Signal on request object]
expected: FAIL
[Signal on request object created from request object]
expected: FAIL
[Signal on request object created from request object, with signal on second request]
expected: FAIL
[Signal on request object created from request object, with signal on second request overriding another]
expected: FAIL
[Signal retained after unrelated properties are overridden by fetch]
expected: FAIL
[Signal removed by setting to null]
expected: FAIL
[Already aborted signal rejects immediately]
expected: FAIL
[Request is still 'used' if signal is aborted before fetching]
expected: FAIL
[response.arrayBuffer() rejects if already aborted]
expected: FAIL
[response.blob() rejects if already aborted]
expected: FAIL
[response.formData() rejects if already aborted]
expected: FAIL
[response.json() rejects if already aborted]
expected: FAIL
[response.text() rejects if already aborted]
expected: FAIL
[Already aborted signal does not make request]
expected: FAIL
[Already aborted signal can be used for many fetches]
expected: FAIL
[Signal can be used to abort other fetches, even if another fetch succeeded before aborting]
expected: FAIL
[Underlying connection is closed when aborting after receiving response]
expected: FAIL
[Underlying connection is closed when aborting after receiving response - no-cors]
expected: FAIL
[Fetch aborted & connection closed when aborted after calling response.arrayBuffer()]
expected: FAIL
[Fetch aborted & connection closed when aborted after calling response.blob()]
expected: FAIL
[Fetch aborted & connection closed when aborted after calling response.formData()]
expected: FAIL
[Fetch aborted & connection closed when aborted after calling response.json()]
expected: FAIL
[Fetch aborted & connection closed when aborted after calling response.text()]
expected: FAIL
[Stream errors once aborted. Underlying connection closed.]
expected: FAIL
[Stream errors once aborted, after reading. Underlying connection closed.]
expected: FAIL
[Stream will not error if body is empty. It's closed with an empty queue before it errors.]
expected: FAIL
[Readable stream synchronously cancels with AbortError if aborted before reading]
expected: FAIL
[Signal state is cloned]
expected: FAIL
[Clone aborts with original controller]
expected: FAIL
[general.any.html]
@ -14,9 +108,104 @@
[general]
expected: FAIL
[Aborting rejects with AbortError]
expected: FAIL
[Aborting rejects with AbortError - no-cors]
expected: FAIL
[TypeError from request constructor takes priority - RequestInit's window is not null]
expected: FAIL
[TypeError from request constructor takes priority - Input URL is not valid]
expected: FAIL
[TypeError from request constructor takes priority - Input URL has credentials]
expected: FAIL
[TypeError from request constructor takes priority - RequestInit's mode is navigate]
expected: FAIL
[TypeError from request constructor takes priority - RequestInit's referrer is invalid]
expected: FAIL
[TypeError from request constructor takes priority - RequestInit's method is forbidden]
expected: FAIL
[TypeError from request constructor takes priority - RequestInit's mode is no-cors and method is not simple]
expected: FAIL
[TypeError from request constructor takes priority - RequestInit's cache mode is only-if-cached and mode is not same-origin]
expected: FAIL
[TypeError from request constructor takes priority - Request with cache mode: only-if-cached and fetch mode cors]
expected: FAIL
[TypeError from request constructor takes priority - Request with cache mode: only-if-cached and fetch mode no-cors]
expected: FAIL
[TypeError from request constructor takes priority - Bad referrerPolicy init parameter value]
expected: FAIL
[TypeError from request constructor takes priority - Bad mode init parameter value]
expected: FAIL
[TypeError from request constructor takes priority - Bad credentials init parameter value]
expected: FAIL
[TypeError from request constructor takes priority - Bad cache init parameter value]
expected: FAIL
[TypeError from request constructor takes priority - Bad redirect init parameter value]
expected: FAIL
[Request objects have a signal property]
expected: FAIL
[Signal on request object]
expected: FAIL
[Signal on request object created from request object]
expected: FAIL
[Signal on request object created from request object, with signal on second request]
expected: FAIL
[Signal on request object created from request object, with signal on second request overriding another]
expected: FAIL
[Signal retained after unrelated properties are overridden by fetch]
expected: FAIL
[Signal removed by setting to null]
expected: FAIL
[Already aborted signal rejects immediately]
expected: FAIL
[Request is still 'used' if signal is aborted before fetching]
expected: FAIL
[response.arrayBuffer() rejects if already aborted]
expected: FAIL
[response.blob() rejects if already aborted]
expected: FAIL
[response.formData() rejects if already aborted]
expected: FAIL
[response.json() rejects if already aborted]
expected: FAIL
[response.text() rejects if already aborted]
expected: FAIL
[Already aborted signal does not make request]
expected: FAIL
[Already aborted signal can be used for many fetches]
expected: FAIL
[Signal can be used to abort other fetches, even if another fetch succeeded before aborting]
expected: FAIL
[Underlying connection is closed when aborting after receiving response]
expected: FAIL
[Underlying connection is closed when aborting after receiving response - no-cors]
expected: FAIL
[Fetch aborted & connection closed when aborted after calling response.arrayBuffer()]
expected: FAIL
[Fetch aborted & connection closed when aborted after calling response.blob()]
expected: FAIL
[Fetch aborted & connection closed when aborted after calling response.formData()]
expected: FAIL
[Fetch aborted & connection closed when aborted after calling response.json()]
expected: FAIL
[Fetch aborted & connection closed when aborted after calling response.text()]
expected: FAIL
[Stream errors once aborted. Underlying connection closed.]
expected: FAIL
[Stream errors once aborted, after reading. Underlying connection closed.]
expected: FAIL
[Stream will not error if body is empty. It's closed with an empty queue before it errors.]
expected: FAIL
[Readable stream synchronously cancels with AbortError if aborted before reading]
expected: FAIL
[Signal state is cloned]
expected: FAIL
[Clone aborts with original controller]
expected: FAIL
[general.https.any.serviceworker.html]
expected: TIMEOUT
[Untitled]
expected: FAIL
@ -33,6 +222,7 @@
[general.any.serviceworker.html]
expected: TIMEOUT
[general]
expected: FAIL

View file

@ -2,4 +2,17 @@
type: testharness
[Aborting fetch when intercepted by a service worker]
expected: FAIL
[Already aborted request does not land in service worker]
expected: FAIL
[response.arrayBuffer() rejects if already aborted]
expected: FAIL
[response.blob() rejects if already aborted]
expected: FAIL
[response.formData() rejects if already aborted]
expected: FAIL
[response.json() rejects if already aborted]
expected: FAIL
[response.text() rejects if already aborted]
expected: FAIL
[Stream errors once aborted.]
expected: FAIL

View file

@ -1,4 +0,0 @@
[keepalive.html]
[Fetch API: keepalive handling]
expected: FAIL

View file

@ -4,6 +4,18 @@
[cors-cookies-redirect]
expected: FAIL
[Set cookies]
expected: FAIL
[Testing credentials after cross-origin redirection with CORS and no preflight]
expected: FAIL
[Testing credentials after cross-origin redirection with CORS and preflight]
expected: FAIL
[Clean cookies]
expected: FAIL
[Testing credentials after cross-origin redirection with CORS and no preflight]
expected: FAIL
[Testing credentials after cross-origin redirection with CORS and preflight]
expected: FAIL
[cors-cookies-redirect.any.html]
@ -12,4 +24,8 @@
[cors-cookies-redirect]
expected: FAIL
[Testing credentials after cross-origin redirection with CORS and no preflight]
expected: FAIL
[Testing credentials after cross-origin redirection with CORS and preflight]
expected: FAIL

View file

@ -1,4 +1,5 @@
[sandboxed-iframe.html]
[sandboxed-iframe]
expected: FAIL
[CORS with sandboxed iframe]
expected: FAIL

View file

@ -21,9 +21,6 @@
[Correct operation ordering with undefined descriptors]
expected: FAIL
[Correct operation ordering with repeated keys]
expected: FAIL
[Basic operation with Symbol keys]
expected: FAIL

View file

@ -4,6 +4,60 @@
[idl]
expected: FAIL
[Testing Symbol.iterator property of iterable interface Headers]
expected: FAIL
[Request interface: attribute keepalive]
expected: FAIL
[Request interface: attribute isReloadNavigation]
expected: FAIL
[Request interface: attribute isHistoryNavigation]
expected: FAIL
[Request interface: attribute signal]
expected: FAIL
[Request interface: attribute body]
expected: FAIL
[Request interface: operation arrayBuffer()]
expected: FAIL
[Request interface: operation blob()]
expected: FAIL
[Request interface: operation formData()]
expected: FAIL
[Request interface: operation json()]
expected: FAIL
[Request interface: operation text()]
expected: FAIL
[Request interface: new Request('about:blank') must inherit property "keepalive" with the proper type]
expected: FAIL
[Request interface: new Request('about:blank') must inherit property "isReloadNavigation" with the proper type]
expected: FAIL
[Request interface: new Request('about:blank') must inherit property "isHistoryNavigation" with the proper type]
expected: FAIL
[Request interface: new Request('about:blank') must inherit property "signal" with the proper type]
expected: FAIL
[Request interface: new Request('about:blank') must inherit property "body" with the proper type]
expected: FAIL
[Response interface: attribute trailer]
expected: FAIL
[Response interface: attribute body]
expected: FAIL
[Response interface: operation arrayBuffer()]
expected: FAIL
[Response interface: operation blob()]
expected: FAIL
[Response interface: operation formData()]
expected: FAIL
[Response interface: operation json()]
expected: FAIL
[Response interface: operation text()]
expected: FAIL
[Response interface: new Response() must inherit property "trailer" with the proper type]
expected: FAIL
[Response interface: new Response() must inherit property "body" with the proper type]
expected: FAIL
[WorkerGlobalScope interface: calling fetch(RequestInfo, RequestInit) on self with too few arguments must throw TypeError]
expected: FAIL
[WorkerGlobalScope interface: operation fetch(RequestInfo, RequestInit)]
expected: FAIL
[idl.any.html]
@ -12,6 +66,60 @@
[idl]
expected: FAIL
[Testing Symbol.iterator property of iterable interface Headers]
expected: FAIL
[Request interface: attribute keepalive]
expected: FAIL
[Request interface: attribute isReloadNavigation]
expected: FAIL
[Request interface: attribute isHistoryNavigation]
expected: FAIL
[Request interface: attribute signal]
expected: FAIL
[Request interface: attribute body]
expected: FAIL
[Request interface: operation arrayBuffer()]
expected: FAIL
[Request interface: operation blob()]
expected: FAIL
[Request interface: operation formData()]
expected: FAIL
[Request interface: operation json()]
expected: FAIL
[Request interface: operation text()]
expected: FAIL
[Request interface: new Request('about:blank') must inherit property "keepalive" with the proper type]
expected: FAIL
[Request interface: new Request('about:blank') must inherit property "isReloadNavigation" with the proper type]
expected: FAIL
[Request interface: new Request('about:blank') must inherit property "isHistoryNavigation" with the proper type]
expected: FAIL
[Request interface: new Request('about:blank') must inherit property "signal" with the proper type]
expected: FAIL
[Request interface: new Request('about:blank') must inherit property "body" with the proper type]
expected: FAIL
[Response interface: attribute trailer]
expected: FAIL
[Response interface: attribute body]
expected: FAIL
[Response interface: operation arrayBuffer()]
expected: FAIL
[Response interface: operation blob()]
expected: FAIL
[Response interface: operation formData()]
expected: FAIL
[Response interface: operation json()]
expected: FAIL
[Response interface: operation text()]
expected: FAIL
[Response interface: new Response() must inherit property "trailer" with the proper type]
expected: FAIL
[Response interface: new Response() must inherit property "body" with the proper type]
expected: FAIL
[Window interface: calling fetch(RequestInfo, RequestInit) on window with too few arguments must throw TypeError]
expected: FAIL
[Window interface: operation fetch(RequestInfo, RequestInit)]
expected: FAIL
[idl.any.sharedworker.html]
@ -23,6 +131,7 @@
[idl.https.any.serviceworker.html]
expected: TIMEOUT
[Untitled]
expected: FAIL
@ -31,6 +140,7 @@
[idl.any.serviceworker.html]
expected: TIMEOUT
[idl]
expected: FAIL

View file

@ -1,4 +1,7 @@
[fetch-destination-iframe.https.html]
[Fetch destination tests for resources with no load event]
expected: FAIL
[Initialize global state]
expected: FAIL
[iframe fetches with a "document" Request.destination]
expected: FAIL

View file

@ -1,4 +1,19 @@
[fetch-destination-no-load-event.https.html]
[Fetch destination tests for resources with no load event]
expected: FAIL
[Initialize global state]
expected: FAIL
[Background image fetches with an "image" Request.destination]
expected: FAIL
[Font loading API fetches with an "font" Request.destination]
expected: FAIL
[CSS font fetches with an "font" Request.destination]
expected: FAIL
[sendBeacon() fetches with an empty string Request.destination]
expected: FAIL
[Cache.add() fetches with an empty string Request.destination]
expected: FAIL
[importScripts() fetches with a "script" Request.destination]
expected: FAIL
[@import fetches with a "style" Request.destination]
expected: FAIL

View file

@ -1,4 +1,8 @@
[fetch-destination-worker.https.html]
[Fetch destination tests for resources with no load event]
expected: FAIL
[Initialize global state]
expected: FAIL
[Worker fetches with a "worker" Request.destination]
expected: FAIL

View file

@ -4,4 +4,55 @@
[Fetch destination tests]
expected: FAIL
[Initialize global state]
expected: FAIL
[HTMLImageElement fetches with an "image" Request.destination]
expected: FAIL
[HTMLImageElement with srcset attribute fetches with an "image" Request.destination]
expected: FAIL
[HTMLImageElement with a HTMLPictureElement parent attribute fetches with an "image" Request.destination]
expected: FAIL
[SVGImageElement fetches with an "image" Request.destination]
expected: FAIL
[fetch() fetches with an empty string Request.destination]
expected: FAIL
[XMLHttpRequest() fetches with an empty string Request.destination]
expected: FAIL
[EventSource() fetches with an empty string Request.destination]
expected: FAIL
[HTMLAudioElement fetches with an "audio" Request.destination]
expected: FAIL
[HTMLVideoElement fetches with a "video" Request.destination]
expected: FAIL
[HTMLScriptElement fetches with a "script" Request.destination]
expected: FAIL
[HTMLLinkElement with rel=stylesheet fetches with a "style" Request.destination]
expected: FAIL
[HTMLLinkElement with rel=preload and as=fetch fetches with an empty string Request.destination]
expected: FAIL
[HTMLLinkElement with rel=preload and as=style fetches with a "style" Request.destination]
expected: FAIL
[HTMLLinkElement with rel=preload and as=script fetches with a "script" Request.destination]
expected: FAIL
[HTMLLinkElement with rel=preload and as=font fetches with a "font" Request.destination]
expected: FAIL
[HTMLLinkElement with rel=preload and as=image fetches with a "image" Request.destination]
expected: FAIL
[HTMLLinkElement with rel=preload and as=audio fetches with a "audio" Request.destination]
expected: FAIL
[HTMLLinkElement with rel=preload and as=video fetches with a "video" Request.destination]
expected: FAIL
[HTMLLinkElement with rel=preload and as=track fetches with a "track" Request.destination]
expected: FAIL
[HTMLLinkElement with rel=preload and as=document fetches with a "document" Request.destination]
expected: FAIL
[HTMLLinkElement with rel=preload and as=worker fetches with a "worker" Request.destination]
expected: FAIL
[HTMLLinkElement with rel=preload and as=sharedworker fetches with a "sharedworker" Request.destination]
expected: FAIL
[HTMLLinkElement with rel=preload and as=xslt fetches with a "xslt" Request.destination]
expected: FAIL
[HTMLLinkElement with rel=preload and as=manifest fetches with a "manifest" Request.destination]
expected: FAIL
[HTMLLinkElement with rel=prefetch fetches with an empty string Request.destination]
expected: FAIL

View file

@ -2,4 +2,5 @@
type: testharness
[Request error]
expected: FAIL
[RequestInit's method is invalid]
expected: FAIL

View file

@ -4,4 +4,10 @@
[request-reset-attributes]
expected: FAIL
[Request.isReloadNavigation is reset with non-empty RequestInit]
expected: FAIL
[Request.isHistoryNavigation is reset with non-empty RequestInit]
expected: FAIL
[Request.mode is reset with non-empty RequestInit when it's "navigate"]
expected: FAIL

View file

@ -1,14 +1,51 @@
[response-stream-with-broken-then.any.html]
[Untitled]
expected: FAIL
[Inject {done: false, value: bye} via Object.prototype.then.]
expected: FAIL
[Inject {done: false, value: undefined} via Object.prototype.then.]
expected: FAIL
[Inject undefined via Object.prototype.then.]
expected: FAIL
[Inject 8.2 via Object.prototype.then.]
expected: FAIL
[response-stream-with-broken-then]
expected: FAIL
[Attempt to inject {done: false, value: bye} via Object.prototype.then.]
expected: FAIL
[Attempt to inject value: undefined via Object.prototype.then.]
expected: FAIL
[Attempt to inject undefined via Object.prototype.then.]
expected: FAIL
[Attempt to inject 8.2 via Object.prototype.then.]
expected: FAIL
[intercepting arraybuffer to body readable stream conversion via Object.prototype.then should not be possible]
expected: FAIL
[response-stream-with-broken-then.any.worker.html]
[Untitled]
expected: FAIL
[Inject {done: false, value: bye} via Object.prototype.then.]
expected: FAIL
[Inject {done: false, value: undefined} via Object.prototype.then.]
expected: FAIL
[Inject undefined via Object.prototype.then.]
expected: FAIL
[Inject 8.2 via Object.prototype.then.]
expected: FAIL
[Attempt to inject {done: false, value: bye} via Object.prototype.then.]
expected: FAIL
[Attempt to inject value: undefined via Object.prototype.then.]
expected: FAIL
[Attempt to inject undefined via Object.prototype.then.]
expected: FAIL
[Attempt to inject 8.2 via Object.prototype.then.]
expected: FAIL
[intercepting arraybuffer to body readable stream conversion via Object.prototype.then should not be possible]
expected: FAIL
[response-stream-with-broken-then]
expected: FAIL