mirror of
https://github.com/denoland/deno.git
synced 2025-08-04 19:08:15 +00:00
fix(op_crates/web/url): apply backslash replacement to the pathname setter (#7937)
This commit is contained in:
parent
bbf7b2ee72
commit
d0c2714c03
2 changed files with 6 additions and 2 deletions
|
@ -192,6 +192,8 @@ unitTest(function urlModifyPathname(): void {
|
|||
// deno-lint-ignore no-self-assign
|
||||
url.pathname = url.pathname;
|
||||
assertEquals(url.pathname, "/baz%23qat%20qux");
|
||||
url.pathname = "\\a\\b\\c";
|
||||
assertEquals(url.pathname, "/a/b/c");
|
||||
});
|
||||
|
||||
unitTest(function urlModifyHash(): void {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue