[Webkit-unassigned] [Bug 193022] New: [WPE] url/urlsearchparams-delete
bugzilla-daemon at webkit.org
bugzilla-daemon at webkit.org
Mon Dec 24 15:31:20 PST 2018
https://bugs.webkit.org/show_bug.cgi?id=193022
Bug ID: 193022
Summary: [WPE] url/urlsearchparams-delete
Product: WebKit
Version: Safari Technology Preview
Hardware: Macintosh
OS: macOS 10.14
Status: NEW
Severity: Normal
Priority: P2
Component: HTML DOM
Assignee: webkit-unassigned at lists.webkit.org
Reporter: franklinyu at hotmail.com
CC: cdumez at apple.com
Failing test: http://w3c-test.org/url/urlsearchparams-delete.any.html
Affected code:
test(function() {
var url = new URL('http://example.com/?');
url.searchParams.delete('param1');
assert_equals(url.href, 'http://example.com/', 'url.href does not have ?');
assert_equals(url.search, '', 'url.search does not have ?');
}, 'Removing non-existent param removes ? from URL');
This is the only failing test for URLSearchParams.
--
You are receiving this mail because:
You are the assignee for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.webkit.org/pipermail/webkit-unassigned/attachments/20181224/8809351e/attachment.html>
More information about the webkit-unassigned
mailing list