Permalink
Show file tree
Hide file tree
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Remove deprecated uppercase URL attribute alias on WebSocket interface
Remove deprecated uppercase URL attribute alias on WebSocket interface https://bugs.webkit.org/show_bug.cgi?id=248781 Reviewed by Chris Dumez. This patch is to align Webkit with Blink / Chromium, Gecko / Firefox and Web-Specification: https://html.spec.whatwg.org/multipage/comms.html#the-websocket-interface Partial Merge - https://chromium.googlesource.com/chromium/blink/+/825c9732ce83f380fadfc062331cc12495e5eb12 The `URL` attribute is from early iterations of the spec and was maintained for compatibility even after `url` was standardized but now it is not in the latest web-specification and was removed from Blink in 2015 as well. * Source/WebCore/Modules/websockets/WebSocket.idl: Remove 'URL' attribute and also add link to web-spec * LayoutTests/http/tests/websocket/tests/hybi/network-process-crash-error.html: Rebaselined * LayoutTests/http/tests/websocket/tests/hybi/simple.html: Rebaselined * LayoutTests/http/tests/websocket/tests/hybi/url-attribute.html: Rebaselined * LayoutTests/http/tests/websocket/tests/hybi/url-attribute-expected.txt: Rebaselined * LayoutTests/http/tests/websocket/tests/hybi/url-parsing.html: Rebaselined * LayoutTests/imported/w3c/web-platform-tests/websockets/interfaces/WebSocket/url/004-expected.txt: Rebaselined * LayoutTests/http/tests/websockets/tests/hybi/url-parsing-expected.txt: Rebaselined * LayoutTests/platform/glib/imported/w3c/web-platform-tests/websockets/interfaces/WebSocket/url/004-expected.txt: Rebaselined * LayoutTests/http/tests/websocket/tests/hybi/simple-wss.html: Rebaselined Canonical link: https://commits.webkit.org/257467@main
- Loading branch information
1 parent
9ddfeb6
commit a05af340527ab26ff2e81de10b6630b25b83e922
Showing
10 changed files
with
18 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
|
||
FAIL WebSockets: 'URL' assert_equals: expected (undefined) undefined but got (string) "ws://localhost:49001/" | ||
PASS WebSockets: 'URL' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
|
||
FAIL WebSockets: 'URL' assert_equals: expected (undefined) undefined but got (string) "ws://web-platform.test:49001/" | ||
PASS WebSockets: 'URL' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters