From e32ff14a75f30de31fb1f7ab4e7bd064dfdbfa8a Mon Sep 17 00:00:00 2001 From: Daijiro Wachi Date: Wed, 22 Feb 2017 22:33:29 +0100 Subject: [PATCH] Add blob URLs into urltestdata.json Related link: + https://github.com/nodejs/node/pull/11426 --- url/urltestdata.json | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/url/urltestdata.json b/url/urltestdata.json index 130df73eec4e97..f6b71ff47f00d2 100644 --- a/url/urltestdata.json +++ b/url/urltestdata.json @@ -5644,5 +5644,33 @@ "input": "non-special://[:80/", "base": "about:blank", "failure": true + }, + { + "input": "blob:https://example.com:443/", + "base": "about:blank", + "href": "blob:https://example.com:443/", + "protocol": "blob:", + "username": "", + "password": "", + "host": "", + "hostname": "", + "port": "", + "pathname": "https://example.com:443/", + "search": "", + "hash": "" + }, + { + "input": "blob:d3958f5c-0777-0845-9dcf-2cb28783acaf", + "base": "about:blank", + "href": "blob:d3958f5c-0777-0845-9dcf-2cb28783acaf", + "protocol": "blob:", + "username": "", + "password": "", + "host": "", + "hostname": "", + "port": "", + "pathname": "d3958f5c-0777-0845-9dcf-2cb28783acaf", + "search": "", + "hash": "" } ]