Changeset 279895 in webkit
- Timestamp:
- Jul 13, 2021, 3:54:29 PM (4 years ago)
- Location:
- trunk
- Files:
-
- 1 deleted
- 15 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LayoutTests/imported/w3c/ChangeLog
r279894 r279895 1 2021-07-13 Alex Christensen <achristensen@webkit.org> 2 3 Update and fix URL WPT tests 4 https://bugs.webkit.org/show_bug.cgi?id=227820 5 6 Reviewed by Chris Dumez. 7 8 * web-platform-tests/url/failure-expected.txt: 9 * web-platform-tests/url/resources/a-element-origin.js: 10 (runURLTests): 11 * web-platform-tests/url/resources/a-element.js: 12 (runURLTests): 13 * web-platform-tests/url/resources/setters_tests.json: 14 * web-platform-tests/url/resources/urltestdata.json: 15 * web-platform-tests/url/url-constructor.any-expected.txt: 16 * web-platform-tests/url/url-constructor.any.js: 17 (bURL): 18 * web-platform-tests/url/url-constructor.any.worker-expected.txt: 19 * web-platform-tests/url/url-origin.any.js: 20 (bURL): 21 * web-platform-tests/url/url-setters-a-area.window-expected.txt: 22 * web-platform-tests/url/url-setters.any-expected.txt: 23 * web-platform-tests/url/url-setters.any.worker-expected.txt: 24 1 25 2021-07-13 Chris Dumez <cdumez@apple.com> 2 26 -
trunk/LayoutTests/imported/w3c/web-platform-tests/url/failure-expected.txt
r279646 r279895 1 Blocked access to external URL http://./Y:2 CONSOLE MESSAGE: Beacon API cannot load http://./Y: due to access control checks.3 Blocked access to external URL http://./y:4 CONSOLE MESSAGE: Beacon API cannot load http://./y: due to access control checks.5 1 6 2 PASS Loading data… … … 75 71 PASS URL's constructor's base argument: http:@:www.example.com should throw 76 72 PASS URL's href: http:@:www.example.com should throw 77 FAIL XHR: http:@:www.example.com should throw assert_throws_dom: function "() => client.open("GET", test.input)" did not throw78 FAIL sendBeacon(): http:@:www.example.com should throw assert_throws_js: function "() => self.navigator.sendBeacon(test.input)" did not throw79 FAIL Location's href: http:@:www.example.com should throw assert_throws_js: function "() => self[0].location = test.input" did not throw80 FAIL window.open(): http:@:www.example.com should throw assert_throws_dom: function "() => self.open(test.input).close()" did not throw81 73 PASS URL's constructor's base argument: http:/@:www.example.com should throw 82 74 PASS URL's href: http:/@:www.example.com should throw 83 FAIL XHR: http:/@:www.example.com should throw assert_throws_dom: function "() => client.open("GET", test.input)" did not throw84 FAIL sendBeacon(): http:/@:www.example.com should throw assert_throws_js: function "() => self.navigator.sendBeacon(test.input)" did not throw85 FAIL Location's href: http:/@:www.example.com should throw assert_throws_js: function "() => self[0].location = test.input" did not throw86 FAIL window.open(): http:/@:www.example.com should throw assert_throws_dom: function "() => self.open(test.input).close()" did not throw87 75 PASS URL's constructor's base argument: http://@:www.example.com should throw 88 76 PASS URL's href: http://@:www.example.com should throw … … 405 393 PASS URL's constructor's base argument: \\\.\Y: should throw 406 394 PASS URL's href: \\\.\Y: should throw 407 FAIL XHR: \\\.\Y: should throw assert_throws_dom: function "() => client.open("GET", test.input)" did not throw408 FAIL sendBeacon(): \\\.\Y: should throw assert_throws_js: function "() => self.navigator.sendBeacon(test.input)" did not throw409 FAIL Location's href: \\\.\Y: should throw assert_throws_js: function "() => self[0].location = test.input" did not throw410 FAIL window.open(): \\\.\Y: should throw assert_throws_dom: function "() => self.open(test.input).close()" did not throw411 395 PASS URL's constructor's base argument: \\\.\y: should throw 412 396 PASS URL's href: \\\.\y: should throw 413 FAIL XHR: \\\.\y: should throw assert_throws_dom: function "() => client.open("GET", test.input)" did not throw414 FAIL sendBeacon(): \\\.\y: should throw assert_throws_js: function "() => self.navigator.sendBeacon(test.input)" did not throw415 FAIL Location's href: \\\.\y: should throw assert_throws_js: function "() => self[0].location = test.input" did not throw416 FAIL window.open(): \\\.\y: should throw assert_throws_dom: function "() => self.open(test.input).close()" did not throw417 397 PASS URL's constructor's base argument: https://[0::0::0] should throw 418 398 PASS URL's href: https://[0::0::0] should throw -
trunk/LayoutTests/imported/w3c/web-platform-tests/url/resources/a-element-origin.js
r264197 r279895 17 17 var expected = urltests[i] 18 18 if (typeof expected === "string" || !("origin" in expected)) continue 19 // skip without base because you cannot unset the baseURL of a document 20 if (expected.base === null) continue; 19 21 20 22 test(function() { -
trunk/LayoutTests/imported/w3c/web-platform-tests/url/resources/a-element.js
r264197 r279895 17 17 var expected = urltests[i] 18 18 if (typeof expected === "string") continue // skip comments 19 // skip without base because you cannot unset the baseURL of a document 20 if (expected.base === null) continue; 19 21 20 22 test(function() { -
trunk/LayoutTests/imported/w3c/web-platform-tests/url/resources/setters_tests.json
r279211 r279895 1613 1613 }, 1614 1614 { 1615 "comment": "Special URLs cannot have their paths erased", 1616 "href": "file:///some/path", 1617 "new_value": "", 1618 "expected": { 1619 "href": "file:///", 1620 "pathname": "/" 1621 } 1622 }, 1623 { 1624 "comment": "Non-special URLs can have their paths erased", 1625 "href": "foo://somehost/some/path", 1626 "new_value": "", 1627 "expected": { 1628 "href": "foo://somehost", 1629 "pathname": "" 1630 } 1631 }, 1632 { 1633 "comment": "Non-special URLs with an empty host can have their paths erased", 1634 "href": "foo:///some/path", 1635 "new_value": "", 1636 "expected": { 1637 "href": "foo://", 1638 "pathname": "" 1639 } 1640 }, 1641 { 1642 "comment": "Path-only URLs cannot have their paths erased", 1643 "href": "foo:/some/path", 1644 "new_value": "", 1645 "expected": { 1646 "href": "foo:/", 1647 "pathname": "/" 1648 } 1649 }, 1650 { 1651 "comment": "Path-only URLs always have an initial slash", 1652 "href": "foo:/some/path", 1653 "new_value": "test", 1654 "expected": { 1655 "href": "foo:/test", 1656 "pathname": "/test" 1657 } 1658 }, 1659 { 1615 1660 "href": "unix:/run/foo.socket?timeout=10", 1616 1661 "new_value": "/var/log/../run/bar.socket", -
trunk/LayoutTests/imported/w3c/web-platform-tests/url/resources/urltestdata.json
r279211 r279895 3304 3304 "input": "http:@:www.example.com", 3305 3305 "base": "about:blank", 3306 "failure": true 3306 "failure": true, 3307 "inputCanBeRelative": true 3307 3308 }, 3308 3309 { 3309 3310 "input": "http:/@:www.example.com", 3310 3311 "base": "about:blank", 3311 "failure": true 3312 "failure": true, 3313 "inputCanBeRelative": true 3312 3314 }, 3313 3315 { … … 6374 6376 "input": "\\\\\\.\\Y:", 6375 6377 "base": "about:blank", 6376 "failure": true 6378 "failure": true, 6379 "inputCanBeRelative": true 6377 6380 }, 6378 6381 "# file: drive letter cases from https://crbug.com/1078698 but lowercased", … … 6436 6439 "input": "\\\\\\.\\y:", 6437 6440 "base": "about:blank", 6438 "failure": true 6441 "failure": true, 6442 "inputCanBeRelative": true 6439 6443 }, 6440 6444 "# Additional file URL tests for (https://github.com/whatwg/url/issues/405)", … … 8017 8021 "search": "", 8018 8022 "username": "" 8023 }, 8024 "Empty query and fragment with blank should throw an error", 8025 { 8026 "input": "#", 8027 "base": null, 8028 "failure": true 8029 }, 8030 { 8031 "input": "?", 8032 "base": null, 8033 "failure": true 8019 8034 } 8020 8035 ] -
trunk/LayoutTests/imported/w3c/web-platform-tests/url/url-constructor.any-expected.txt
r279235 r279895 645 645 PASS Parsing: <abc:rootless> against <abc:path> 646 646 PASS Parsing: <abc:/rooted> against <abc://host/path> 647 PASS Parsing: <#> against <null> 648 PASS Parsing: <?> against <null> 647 649 -
trunk/LayoutTests/imported/w3c/web-platform-tests/url/url-constructor.any.js
r279211 r279895 2 2 3 3 function bURL(url, base) { 4 return new URL(url, base || "about:blank")4 return base ? new URL(url, base) : new URL(url) 5 5 } 6 6 -
trunk/LayoutTests/imported/w3c/web-platform-tests/url/url-constructor.any.worker-expected.txt
r279235 r279895 645 645 PASS Parsing: <abc:rootless> against <abc:path> 646 646 PASS Parsing: <abc:/rooted> against <abc://host/path> 647 PASS Parsing: <#> against <null> 648 PASS Parsing: <?> against <null> 647 649 -
trunk/LayoutTests/imported/w3c/web-platform-tests/url/url-origin.any.js
r279211 r279895 2 2 3 3 function bURL(url, base) { 4 return new URL(url, base || "about:blank")4 return base ? new URL(url, base) : new URL(url) 5 5 } 6 6 -
trunk/LayoutTests/imported/w3c/web-platform-tests/url/url-setters-a-area.window-expected.txt
r279680 r279895 341 341 PASS <a>: Setting <mailto:me@example.net>.pathname = '/foo' Cannot-be-a-base don’t have a path 342 342 PASS <area>: Setting <mailto:me@example.net>.pathname = '/foo' Cannot-be-a-base don’t have a path 343 PASS <a>: Setting <file:///some/path>.pathname = '' Special URLs cannot have their paths erased 344 PASS <area>: Setting <file:///some/path>.pathname = '' Special URLs cannot have their paths erased 345 PASS <a>: Setting <foo://somehost/some/path>.pathname = '' Non-special URLs can have their paths erased 346 PASS <area>: Setting <foo://somehost/some/path>.pathname = '' Non-special URLs can have their paths erased 347 PASS <a>: Setting <foo:///some/path>.pathname = '' Non-special URLs with an empty host can have their paths erased 348 PASS <area>: Setting <foo:///some/path>.pathname = '' Non-special URLs with an empty host can have their paths erased 349 PASS <a>: Setting <foo:/some/path>.pathname = '' Path-only URLs cannot have their paths erased 350 PASS <area>: Setting <foo:/some/path>.pathname = '' Path-only URLs cannot have their paths erased 351 PASS <a>: Setting <foo:/some/path>.pathname = 'test' Path-only URLs always have an initial slash 352 PASS <area>: Setting <foo:/some/path>.pathname = 'test' Path-only URLs always have an initial slash 343 353 PASS <a>: Setting <unix:/run/foo.socket?timeout=10>.pathname = '/var/log/../run/bar.socket' 344 354 PASS <area>: Setting <unix:/run/foo.socket?timeout=10>.pathname = '/var/log/../run/bar.socket' -
trunk/LayoutTests/imported/w3c/web-platform-tests/url/url-setters.any-expected.txt
r279680 r279895 171 171 PASS URL: Setting <javascript://x/>.port = '12' 172 172 PASS URL: Setting <mailto:me@example.net>.pathname = '/foo' Cannot-be-a-base don’t have a path 173 PASS URL: Setting <file:///some/path>.pathname = '' Special URLs cannot have their paths erased 174 PASS URL: Setting <foo://somehost/some/path>.pathname = '' Non-special URLs can have their paths erased 175 PASS URL: Setting <foo:///some/path>.pathname = '' Non-special URLs with an empty host can have their paths erased 176 PASS URL: Setting <foo:/some/path>.pathname = '' Path-only URLs cannot have their paths erased 177 PASS URL: Setting <foo:/some/path>.pathname = 'test' Path-only URLs always have an initial slash 173 178 PASS URL: Setting <unix:/run/foo.socket?timeout=10>.pathname = '/var/log/../run/bar.socket' 174 179 PASS URL: Setting <https://example.net#nav>.pathname = 'home' -
trunk/LayoutTests/imported/w3c/web-platform-tests/url/url-setters.any.worker-expected.txt
r279680 r279895 171 171 PASS URL: Setting <javascript://x/>.port = '12' 172 172 PASS URL: Setting <mailto:me@example.net>.pathname = '/foo' Cannot-be-a-base don’t have a path 173 PASS URL: Setting <file:///some/path>.pathname = '' Special URLs cannot have their paths erased 174 PASS URL: Setting <foo://somehost/some/path>.pathname = '' Non-special URLs can have their paths erased 175 PASS URL: Setting <foo:///some/path>.pathname = '' Non-special URLs with an empty host can have their paths erased 176 PASS URL: Setting <foo:/some/path>.pathname = '' Path-only URLs cannot have their paths erased 177 PASS URL: Setting <foo:/some/path>.pathname = 'test' Path-only URLs always have an initial slash 173 178 PASS URL: Setting <unix:/run/foo.socket?timeout=10>.pathname = '/var/log/../run/bar.socket' 174 179 PASS URL: Setting <https://example.net#nav>.pathname = 'home' -
trunk/Source/WTF/ChangeLog
r279892 r279895 1 2021-07-13 Alex Christensen <achristensen@webkit.org> 2 3 Update and fix URL WPT tests 4 https://bugs.webkit.org/show_bug.cgi?id=227820 5 6 Reviewed by Chris Dumez. 7 8 There was an edge case where if we set a path to an empty string, it would add a slash. No more. 9 10 * wtf/URL.cpp: 11 (WTF::URL::setPath): 12 1 13 2021-07-13 Michael Catanzaro <mcatanzaro@gnome.org> 2 14 -
trunk/Source/WTF/wtf/URL.cpp
r279760 r279895 683 683 parse(makeString( 684 684 StringView(m_string).left(pathStart()), 685 path.startsWith('/') || (path.startsWith('\\') && (hasSpecialScheme() || protocolIs("file"))) ? "" : "/",685 path.startsWith('/') || (path.startsWith('\\') && (hasSpecialScheme() || protocolIs("file"))) || (!hasSpecialScheme() && path.isEmpty() && m_schemeEnd + 1 < pathStart()) ? "" : "/", 686 686 !hasSpecialScheme() && host().isEmpty() && path.startsWith("//") && path.length() > 2 ? "/." : "", 687 687 escapePathWithoutCopying(path),
Note:
See TracChangeset
for help on using the changeset viewer.