Title: [279871] trunk/LayoutTests
Revision
279871
Author
commit-qu...@webkit.org
Date
2021-07-13 05:54:02 -0700 (Tue, 13 Jul 2021)

Log Message

Unreviewed, reverting r279705.
https://bugs.webkit.org/show_bug.cgi?id=227903

Added a broken test

Reverted changeset:

"Only first set-cookie HTTP header in websocket http response
is accepted"
https://bugs.webkit.org/show_bug.cgi?id=227739
https://commits.webkit.org/r279705

Modified Paths

Removed Paths

Diff

Modified: trunk/LayoutTests/ChangeLog (279870 => 279871)


--- trunk/LayoutTests/ChangeLog	2021-07-13 11:44:33 UTC (rev 279870)
+++ trunk/LayoutTests/ChangeLog	2021-07-13 12:54:02 UTC (rev 279871)
@@ -1,3 +1,17 @@
+2021-07-13  Commit Queue  <commit-qu...@webkit.org>
+
+        Unreviewed, reverting r279705.
+        https://bugs.webkit.org/show_bug.cgi?id=227903
+
+        Added a broken test
+
+        Reverted changeset:
+
+        "Only first set-cookie HTTP header in websocket http response
+        is accepted"
+        https://bugs.webkit.org/show_bug.cgi?id=227739
+        https://commits.webkit.org/r279705
+
 2021-07-13  Arcady Goldmints-Orlov  <agoldmi...@igalia.com>
 
         [GLIB] Update baselines after r279673

Deleted: trunk/LayoutTests/http/tests/websocket/tests/hybi/multiple-set-cookies-expected.txt (279870 => 279871)


--- trunk/LayoutTests/http/tests/websocket/tests/hybi/multiple-set-cookies-expected.txt	2021-07-13 11:44:33 UTC (rev 279870)
+++ trunk/LayoutTests/http/tests/websocket/tests/hybi/multiple-set-cookies-expected.txt	2021-07-13 12:54:02 UTC (rev 279871)
@@ -1,2 +0,0 @@
-ALERT: a=b,c=d
-

Deleted: trunk/LayoutTests/http/tests/websocket/tests/hybi/multiple-set-cookies.html (279870 => 279871)


--- trunk/LayoutTests/http/tests/websocket/tests/hybi/multiple-set-cookies.html	2021-07-13 11:44:33 UTC (rev 279870)
+++ trunk/LayoutTests/http/tests/websocket/tests/hybi/multiple-set-cookies.html	2021-07-13 12:54:02 UTC (rev 279871)
@@ -1,27 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script>
-if (window.testRunner) {
-    testRunner.waitUntilDone();
-    testRunner.dumpAsText();
-}
-
-function runTest()
-{
-    var ws = new WebSocket("ws://127.0.0.1:8880/websocket/tests/hybi/multiple_set_cookie");
-    ws._onopen_ = function() {
-        alert(document.cookie);
-        if (window.testRunner) {
-            testRunner.notifyDone();
-        }
-    }
-    ws._onerror_ = function(error) {
-        alert('error: ' + error);
-    }
-}
-</script>
-</head>
-<body _onload_='runTest()'>
-</body>
-</html>

Deleted: trunk/LayoutTests/http/tests/websocket/tests/hybi/multiple_set_cookie_wsh.py (279870 => 279871)


--- trunk/LayoutTests/http/tests/websocket/tests/hybi/multiple_set_cookie_wsh.py	2021-07-13 11:44:33 UTC (rev 279870)
+++ trunk/LayoutTests/http/tests/websocket/tests/hybi/multiple_set_cookie_wsh.py	2021-07-13 12:54:02 UTC (rev 279871)
@@ -1,33 +0,0 @@
-#
-# Copyright (C) 2021 Apple Inc. All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions
-# are met:
-# 1. Redistributions of source code must retain the above copyright
-#    notice, this list of conditions and the following disclaimer.
-# 2. Redistributions in binary form must reproduce the above copyright
-#    notice, this list of conditions and the following disclaimer in the
-#    documentation and/or other materials provided with the distribution.
-#
-# THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
-# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
-# THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
-# PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
-# BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
-# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
-# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
-# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
-# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
-# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
-# THE POSSIBILITY OF SUCH DAMAGE.
-#
-
-
-def web_socket_do_extra_handshake(request):
-    request.extra_headers.append(('Set-Cookie', 'a=b'))
-    request.extra_headers.append(('Set-Cookie', 'c=d'))
-
-
-def web_socket_transfer_data(request):
-    pass
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to