From 43a97878ce14b72f0981164f87f2e35e14151312 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 7 Apr 2024 11:22:09 +0200 Subject: Adding upstream version 110.0.1. Signed-off-by: Daniel Baumann --- .../tests/websockets/constructor/001.html | 14 ++++++++ .../tests/websockets/constructor/002.html | 21 +++++++++++ .../tests/websockets/constructor/004.html | 36 +++++++++++++++++++ .../tests/websockets/constructor/005.html | 14 ++++++++ .../tests/websockets/constructor/006.html | 29 +++++++++++++++ .../tests/websockets/constructor/007.html | 17 +++++++++ .../tests/websockets/constructor/008.html | 15 ++++++++ .../tests/websockets/constructor/009.html | 24 +++++++++++++ .../tests/websockets/constructor/010.html | 22 ++++++++++++ .../tests/websockets/constructor/011.html | 28 +++++++++++++++ .../tests/websockets/constructor/012.html | 20 +++++++++++ .../tests/websockets/constructor/013.html | 42 ++++++++++++++++++++++ .../tests/websockets/constructor/014.html | 39 ++++++++++++++++++++ .../tests/websockets/constructor/016.html | 20 +++++++++++ .../tests/websockets/constructor/017.html | 19 ++++++++++ .../tests/websockets/constructor/018.html | 20 +++++++++++ .../tests/websockets/constructor/019.html | 21 +++++++++++ .../tests/websockets/constructor/020.html | 21 +++++++++++ .../tests/websockets/constructor/021.html | 12 +++++++ .../tests/websockets/constructor/022.html | 23 ++++++++++++ 20 files changed, 457 insertions(+) create mode 100644 testing/web-platform/tests/websockets/constructor/001.html create mode 100644 testing/web-platform/tests/websockets/constructor/002.html create mode 100644 testing/web-platform/tests/websockets/constructor/004.html create mode 100644 testing/web-platform/tests/websockets/constructor/005.html create mode 100644 testing/web-platform/tests/websockets/constructor/006.html create mode 100644 testing/web-platform/tests/websockets/constructor/007.html create mode 100644 testing/web-platform/tests/websockets/constructor/008.html create mode 100644 testing/web-platform/tests/websockets/constructor/009.html create mode 100644 testing/web-platform/tests/websockets/constructor/010.html create mode 100644 testing/web-platform/tests/websockets/constructor/011.html create mode 100644 testing/web-platform/tests/websockets/constructor/012.html create mode 100644 testing/web-platform/tests/websockets/constructor/013.html create mode 100644 testing/web-platform/tests/websockets/constructor/014.html create mode 100644 testing/web-platform/tests/websockets/constructor/016.html create mode 100644 testing/web-platform/tests/websockets/constructor/017.html create mode 100644 testing/web-platform/tests/websockets/constructor/018.html create mode 100644 testing/web-platform/tests/websockets/constructor/019.html create mode 100644 testing/web-platform/tests/websockets/constructor/020.html create mode 100644 testing/web-platform/tests/websockets/constructor/021.html create mode 100644 testing/web-platform/tests/websockets/constructor/022.html (limited to 'testing/web-platform/tests/websockets/constructor') diff --git a/testing/web-platform/tests/websockets/constructor/001.html b/testing/web-platform/tests/websockets/constructor/001.html new file mode 100644 index 0000000000..0c39a0ee71 --- /dev/null +++ b/testing/web-platform/tests/websockets/constructor/001.html @@ -0,0 +1,14 @@ + +WebSockets: new WebSocket() with no args + + + + + + +
+ diff --git a/testing/web-platform/tests/websockets/constructor/002.html b/testing/web-platform/tests/websockets/constructor/002.html new file mode 100644 index 0000000000..8c80c23735 --- /dev/null +++ b/testing/web-platform/tests/websockets/constructor/002.html @@ -0,0 +1,21 @@ + +WebSockets: new WebSocket(invalid url) + + + + + + +
+ diff --git a/testing/web-platform/tests/websockets/constructor/004.html b/testing/web-platform/tests/websockets/constructor/004.html new file mode 100644 index 0000000000..e599bf224a --- /dev/null +++ b/testing/web-platform/tests/websockets/constructor/004.html @@ -0,0 +1,36 @@ + +WebSockets: new WebSocket(url, invalid protocol) + + + + + + +
+ diff --git a/testing/web-platform/tests/websockets/constructor/005.html b/testing/web-platform/tests/websockets/constructor/005.html new file mode 100644 index 0000000000..377d9c4217 --- /dev/null +++ b/testing/web-platform/tests/websockets/constructor/005.html @@ -0,0 +1,14 @@ + +WebSockets: return value + + + + + + +
+ diff --git a/testing/web-platform/tests/websockets/constructor/006.html b/testing/web-platform/tests/websockets/constructor/006.html new file mode 100644 index 0000000000..65178e0016 --- /dev/null +++ b/testing/web-platform/tests/websockets/constructor/006.html @@ -0,0 +1,29 @@ + +WebSockets: converting first arguments + + + + + + +
+ diff --git a/testing/web-platform/tests/websockets/constructor/007.html b/testing/web-platform/tests/websockets/constructor/007.html new file mode 100644 index 0000000000..647f4202a1 --- /dev/null +++ b/testing/web-platform/tests/websockets/constructor/007.html @@ -0,0 +1,17 @@ + +WebSockets: new WebSocket(url, null char) + + + + + + +
+ diff --git a/testing/web-platform/tests/websockets/constructor/008.html b/testing/web-platform/tests/websockets/constructor/008.html new file mode 100644 index 0000000000..de7fb457ba --- /dev/null +++ b/testing/web-platform/tests/websockets/constructor/008.html @@ -0,0 +1,15 @@ + +WebSockets: new WebSocket(url with not blocked port) + + + + + +
+ diff --git a/testing/web-platform/tests/websockets/constructor/009.html b/testing/web-platform/tests/websockets/constructor/009.html new file mode 100644 index 0000000000..4e69a839eb --- /dev/null +++ b/testing/web-platform/tests/websockets/constructor/009.html @@ -0,0 +1,24 @@ + +WebSockets: protocol + + + + + + +
+ diff --git a/testing/web-platform/tests/websockets/constructor/010.html b/testing/web-platform/tests/websockets/constructor/010.html new file mode 100644 index 0000000000..0adf2b13f9 --- /dev/null +++ b/testing/web-platform/tests/websockets/constructor/010.html @@ -0,0 +1,22 @@ + +WebSockets: protocol in response but no requested protocol + + + + + + +
+ diff --git a/testing/web-platform/tests/websockets/constructor/011.html b/testing/web-platform/tests/websockets/constructor/011.html new file mode 100644 index 0000000000..9b7f114dc0 --- /dev/null +++ b/testing/web-platform/tests/websockets/constructor/011.html @@ -0,0 +1,28 @@ + +WebSockets: protocol mismatch + + + + + + +
+ diff --git a/testing/web-platform/tests/websockets/constructor/012.html b/testing/web-platform/tests/websockets/constructor/012.html new file mode 100644 index 0000000000..3472361672 --- /dev/null +++ b/testing/web-platform/tests/websockets/constructor/012.html @@ -0,0 +1,20 @@ + +WebSockets: no protocol in response + + + + + + +
+ + diff --git a/testing/web-platform/tests/websockets/constructor/013.html b/testing/web-platform/tests/websockets/constructor/013.html new file mode 100644 index 0000000000..53b0400a2d --- /dev/null +++ b/testing/web-platform/tests/websockets/constructor/013.html @@ -0,0 +1,42 @@ + +WebSockets: multiple WebSocket objects + + + + + + + +
+ + diff --git a/testing/web-platform/tests/websockets/constructor/014.html b/testing/web-platform/tests/websockets/constructor/014.html new file mode 100644 index 0000000000..f3f38ad278 --- /dev/null +++ b/testing/web-platform/tests/websockets/constructor/014.html @@ -0,0 +1,39 @@ + +WebSockets: serialize establish a connection + + + + + + +
+ diff --git a/testing/web-platform/tests/websockets/constructor/016.html b/testing/web-platform/tests/websockets/constructor/016.html new file mode 100644 index 0000000000..7a5c9a9e07 --- /dev/null +++ b/testing/web-platform/tests/websockets/constructor/016.html @@ -0,0 +1,20 @@ + + +WebSockets: non-ascii URL in query, document encoding windows-1252 + + + + + + +
+ diff --git a/testing/web-platform/tests/websockets/constructor/017.html b/testing/web-platform/tests/websockets/constructor/017.html new file mode 100644 index 0000000000..5087290f3c --- /dev/null +++ b/testing/web-platform/tests/websockets/constructor/017.html @@ -0,0 +1,19 @@ + +WebSockets: too few slashes after ws: and wss: + + + + + + +
+ diff --git a/testing/web-platform/tests/websockets/constructor/018.html b/testing/web-platform/tests/websockets/constructor/018.html new file mode 100644 index 0000000000..f4d6ab30d9 --- /dev/null +++ b/testing/web-platform/tests/websockets/constructor/018.html @@ -0,0 +1,20 @@ + +WebSockets: NULL char in url + + + + + + +
+ diff --git a/testing/web-platform/tests/websockets/constructor/019.html b/testing/web-platform/tests/websockets/constructor/019.html new file mode 100644 index 0000000000..a0ec6c3ad7 --- /dev/null +++ b/testing/web-platform/tests/websockets/constructor/019.html @@ -0,0 +1,21 @@ + +WebSockets: uppercase 'WS:' + + + + + + +
+ diff --git a/testing/web-platform/tests/websockets/constructor/020.html b/testing/web-platform/tests/websockets/constructor/020.html new file mode 100644 index 0000000000..f050a1b8fa --- /dev/null +++ b/testing/web-platform/tests/websockets/constructor/020.html @@ -0,0 +1,21 @@ + +WebSockets: uppercase host + + + + + + +
+ diff --git a/testing/web-platform/tests/websockets/constructor/021.html b/testing/web-platform/tests/websockets/constructor/021.html new file mode 100644 index 0000000000..039d74b043 --- /dev/null +++ b/testing/web-platform/tests/websockets/constructor/021.html @@ -0,0 +1,12 @@ + +WebSockets: Same sub protocol twice + + + + + + +
+ diff --git a/testing/web-platform/tests/websockets/constructor/022.html b/testing/web-platform/tests/websockets/constructor/022.html new file mode 100644 index 0000000000..a55d8f349d --- /dev/null +++ b/testing/web-platform/tests/websockets/constructor/022.html @@ -0,0 +1,23 @@ + +WebSockets: protocol array + + + + + + +
+ -- cgit v1.2.3