summaryrefslogtreecommitdiffstats
path: root/netwerk/test/unit/test_webtransport_simple.js
diff options
context:
space:
mode:
Diffstat (limited to 'netwerk/test/unit/test_webtransport_simple.js')
-rw-r--r--netwerk/test/unit/test_webtransport_simple.js11
1 files changed, 11 insertions, 0 deletions
diff --git a/netwerk/test/unit/test_webtransport_simple.js b/netwerk/test/unit/test_webtransport_simple.js
index bd99654bc3..4b64ef840e 100644
--- a/netwerk/test/unit/test_webtransport_simple.js
+++ b/netwerk/test/unit/test_webtransport_simple.js
@@ -77,6 +77,7 @@ add_task(async function test_wt_datagram() {
webTransport.asyncConnect(
NetUtil.newURI(`https://${host}/success`),
+ true,
[],
Services.scriptSecurityManager.getSystemPrincipal(),
Ci.nsILoadInfo.SEC_ALLOW_CROSS_ORIGIN_SEC_CONTEXT_IS_NULL,
@@ -134,6 +135,7 @@ add_task(async function test_connect_wt() {
webTransport.asyncConnect(
NetUtil.newURI(`https://${host}/success`),
+ true,
[],
Services.scriptSecurityManager.getSystemPrincipal(),
Ci.nsILoadInfo.SEC_ALLOW_CROSS_ORIGIN_SEC_CONTEXT_IS_NULL,
@@ -156,6 +158,7 @@ add_task(async function test_redirect_wt() {
webTransport.asyncConnect(
NetUtil.newURI(`https://${host}/redirect`),
+ true,
[],
Services.scriptSecurityManager.getSystemPrincipal(),
Ci.nsILoadInfo.SEC_ALLOW_CROSS_ORIGIN_SEC_CONTEXT_IS_NULL,
@@ -175,6 +178,7 @@ add_task(async function test_reject() {
webTransport.asyncConnect(
NetUtil.newURI(`https://${host}/reject`),
+ true,
[],
Services.scriptSecurityManager.getSystemPrincipal(),
Ci.nsILoadInfo.SEC_ALLOW_CROSS_ORIGIN_SEC_CONTEXT_IS_NULL,
@@ -198,6 +202,7 @@ async function test_closed(path) {
});
webTransport.asyncConnect(
NetUtil.newURI(`https://${host}${path}`),
+ true,
[],
Services.scriptSecurityManager.getSystemPrincipal(),
Ci.nsILoadInfo.SEC_ALLOW_CROSS_ORIGIN_SEC_CONTEXT_IS_NULL,
@@ -229,6 +234,7 @@ add_task(async function test_wt_stream_create() {
webTransport.asyncConnect(
NetUtil.newURI(`https://${host}/success`),
+ true,
[],
Services.scriptSecurityManager.getSystemPrincipal(),
Ci.nsILoadInfo.SEC_ALLOW_CROSS_ORIGIN_SEC_CONTEXT_IS_NULL,
@@ -255,6 +261,7 @@ add_task(async function test_wt_stream_send_and_stats() {
webTransport.asyncConnect(
NetUtil.newURI(`https://${host}/success`),
+ true,
[],
Services.scriptSecurityManager.getSystemPrincipal(),
Ci.nsILoadInfo.SEC_ALLOW_CROSS_ORIGIN_SEC_CONTEXT_IS_NULL,
@@ -295,6 +302,7 @@ add_task(async function test_wt_receive_stream_and_stats() {
});
webTransport.asyncConnect(
NetUtil.newURI(`https://${host}/create_unidi_stream_and_hello`),
+ true,
[],
Services.scriptSecurityManager.getSystemPrincipal(),
Ci.nsILoadInfo.SEC_ALLOW_CROSS_ORIGIN_SEC_CONTEXT_IS_NULL,
@@ -337,6 +345,7 @@ add_task(async function test_wt_outgoing_bidi_stream() {
webTransport.asyncConnect(
NetUtil.newURI(`https://${host}/success`),
+ true,
[],
Services.scriptSecurityManager.getSystemPrincipal(),
Ci.nsILoadInfo.SEC_ALLOW_CROSS_ORIGIN_SEC_CONTEXT_IS_NULL,
@@ -388,6 +397,7 @@ add_task(async function test_wt_incoming_bidi_stream() {
});
webTransport.asyncConnect(
NetUtil.newURI(`https://${host}/create_bidi_stream`),
+ true,
[],
Services.scriptSecurityManager.getSystemPrincipal(),
Ci.nsILoadInfo.SEC_ALLOW_CROSS_ORIGIN_SEC_CONTEXT_IS_NULL,
@@ -434,6 +444,7 @@ async function createWebTransportAndConnect() {
webTransport.asyncConnect(
NetUtil.newURI(`https://${host}/success`),
+ true,
[],
Services.scriptSecurityManager.getSystemPrincipal(),
Ci.nsILoadInfo.SEC_ALLOW_CROSS_ORIGIN_SEC_CONTEXT_IS_NULL,