Bug 1764099 - Enable TransformStream and ReadableStream.pipeThrough on Nightly r=mgaudet,emilio,smaug

Differential Revision: https://phabricator.services.mozilla.com/D143405
This commit is contained in:
Kagami Sascha Rosylight 2022-04-12 14:05:46 +00:00
Родитель f4fc8c9d66
Коммит a6fe0cdad4
5 изменённых файлов: 22 добавлений и 19 удалений

Просмотреть файл

@ -291,6 +291,10 @@ var interfaceNamesInGlobalScope = [
// IMPORTANT: Do not change this list without review from a DOM peer!
"TextEncoder",
// IMPORTANT: Do not change this list without review from a DOM peer!
{ name: "TransformStream", nightly: true },
// IMPORTANT: Do not change this list without review from a DOM peer!
{ name: "TransformStreamDefaultController", nightly: true },
// IMPORTANT: Do not change this list without review from a DOM peer!
"URL",
// IMPORTANT: Do not change this list without review from a DOM peer!
"URLSearchParams",

Просмотреть файл

@ -1290,6 +1290,14 @@ var interfaceNamesInGlobalScope = [
// IMPORTANT: Do not change this list without review from a DOM peer!
{ name: "TrackEvent", insecureContext: true },
// IMPORTANT: Do not change this list without review from a DOM peer!
{ name: "TransformStream", insecureContext: true, nightly: true },
// IMPORTANT: Do not change this list without review from a DOM peer!
{
name: "TransformStreamDefaultController",
insecureContext: true,
nightly: true,
},
// IMPORTANT: Do not change this list without review from a DOM peer!
{ name: "TransitionEvent", insecureContext: true },
// IMPORTANT: Do not change this list without review from a DOM peer!
{ name: "TreeWalker", insecureContext: true },

Просмотреть файл

@ -287,6 +287,14 @@ var interfaceNamesInGlobalScope = [
// IMPORTANT: Do not change this list without review from a DOM peer!
{ name: "TextEncoder", insecureContext: true },
// IMPORTANT: Do not change this list without review from a DOM peer!
{ name: "TransformStream", insecureContext: true, nightly: true },
// IMPORTANT: Do not change this list without review from a DOM peer!
{
name: "TransformStreamDefaultController",
insecureContext: true,
nightly: true,
},
// IMPORTANT: Do not change this list without review from a DOM peer!
{ name: "XMLHttpRequest", insecureContext: true },
// IMPORTANT: Do not change this list without review from a DOM peer!
{ name: "XMLHttpRequestEventTarget", insecureContext: true },

Просмотреть файл

@ -3645,7 +3645,7 @@
- name: dom.streams.transform_streams.enabled
type: RelaxedAtomicBool
value: false
value: @IS_NIGHTLY_BUILD@
mirror: always
- name: dom.streams.pipeTo.enabled

Просмотреть файл

@ -1,18 +1 @@
[response-stream-disturbed-by-pipe.any.html]
[using pipeThrough on Response body should disturb it synchronously]
expected: FAIL
[response-stream-disturbed-by-pipe.any.worker.html]
[using pipeThrough on Response body should disturb it synchronously]
expected: FAIL
[response-stream-disturbed-by-pipe.any.serviceworker.html]
[using pipeThrough on Response body should disturb it synchronously]
expected: FAIL
[response-stream-disturbed-by-pipe.any.sharedworker.html]
[using pipeThrough on Response body should disturb it synchronously]
expected: FAIL
prefs: [dom.streams.transform_streams.enabled:true]