From a44bb1ce6c7224f548863074beaeb2f6abc9d0f0 Mon Sep 17 00:00:00 2001 From: Anne van Kesteren Date: Sat, 2 Sep 2023 19:36:44 +0200 Subject: [PATCH] HTML: "gopher" is no longer a special scheme --- .../urls/resolving-urls/query-encoding/resources/resolve-url.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/html/infrastructure/urls/resolving-urls/query-encoding/resources/resolve-url.js b/html/infrastructure/urls/resolving-urls/query-encoding/resources/resolve-url.js index f654a894b9d4df..35088a037230b2 100644 --- a/html/infrastructure/urls/resolving-urls/query-encoding/resources/resolve-url.js +++ b/html/infrastructure/urls/resolving-urls/query-encoding/resources/resolve-url.js @@ -674,13 +674,13 @@ onload = function() { var test_scheme_urls = ['ftp://example.invalid/?x=\u00E5', 'file:///?x=\u00E5', - 'gopher://example.invalid/?x=\u00E5', 'http://example.invalid/?x=\u00E5', 'https://example.invalid/?x=\u00E5', ]; var test_scheme_urls_utf8 = ['ws://example.invalid/?x=\u00E5', 'wss://example.invalid/?x=\u00E5', + 'gopher://example.invalid/?x=\u00E5', 'mailto:example@invalid?x=\u00E5', 'data:text/plain;charset='+encoding+',?x=\u00E5', 'javascript:"?x=\u00E5"',