Skip to content

Commit ca4b5dc

Browse files
authored
Merge branch 'servo:main' into main
2 parents f8741dc + 797b2e2 commit ca4b5dc

File tree

3 files changed

+7
-55
lines changed

3 files changed

+7
-55
lines changed

url/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
name = "url"
44
# When updating version, also modify html_root_url in the lib.rs
5-
version = "2.5.3"
5+
version = "2.5.4"
66
authors = ["The rust-url developers"]
77

88
description = "URL library for Rust, based on the WHATWG URL Standard"

url/src/lib.rs

+2-54
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ url = { version = "2", features = ["debugger_visualizer"] }
143143
*/
144144

145145
#![no_std]
146-
#![doc(html_root_url = "https://docs.rs/url/2.5.3")]
146+
#![doc(html_root_url = "https://docs.rs/url/2.5.4")]
147147
#![cfg_attr(
148148
feature = "debugger_visualizer",
149149
debugger_visualizer(natvis_file = "../../debug_metadata/url.natvis")
@@ -1757,39 +1757,6 @@ impl Url {
17571757
let old_after_path_pos = to_u32(self.serialization.len()).unwrap();
17581758
let cannot_be_a_base = self.cannot_be_a_base();
17591759
let scheme_type = SchemeType::from(self.scheme());
1760-
let mut path_empty = false;
1761-
1762-
// Check ':' and then see if the next character is '/'
1763-
let mut has_host = if let Some(index) = self.serialization.find(":") {
1764-
if self.serialization.len() > index + 1
1765-
&& self.serialization.as_bytes().get(index + 1) == Some(&b'/')
1766-
{
1767-
let rest = &self.serialization[(index + ":/".len())..];
1768-
let host_part = rest.split('/').next().unwrap_or("");
1769-
path_empty = rest.is_empty();
1770-
!host_part.is_empty() && !host_part.contains('@')
1771-
} else {
1772-
false
1773-
}
1774-
} else {
1775-
false
1776-
};
1777-
1778-
// Ensure the path length is greater than 1 to account
1779-
// for cases where "/." is already appended from serialization
1780-
// If we set path, then we already checked the other two conditions:
1781-
// https://url.spec.whatwg.org/#url-serializing
1782-
// 1. The host is null
1783-
// 2. the first segment of the URL's path is an empty string
1784-
if path.len() > 1 {
1785-
if let Some(index) = self.serialization.find(":") {
1786-
let removal_start = index + ":".len();
1787-
if self.serialization[removal_start..].starts_with("/.") {
1788-
self.path_start -= "/.".len() as u32;
1789-
}
1790-
}
1791-
}
1792-
17931760
self.serialization.truncate(self.path_start as usize);
17941761
self.mutate(|parser| {
17951762
if cannot_be_a_base {
@@ -1799,33 +1766,14 @@ impl Url {
17991766
}
18001767
parser.parse_cannot_be_a_base_path(parser::Input::new_no_trim(path));
18011768
} else {
1769+
let mut has_host = true; // FIXME
18021770
parser.parse_path_start(
18031771
scheme_type,
18041772
&mut has_host,
18051773
parser::Input::new_no_trim(path),
18061774
);
18071775
}
18081776
});
1809-
1810-
// For cases where normalization is applied across both the serialization and the path.
1811-
// Append "/." immediately after the scheme (up to ":")
1812-
// This is done if three conditions are met.
1813-
// https://url.spec.whatwg.org/#url-serializing
1814-
// 1. The host is null
1815-
// 2. The url's path length is greater than 1
1816-
// 3. the first segment of the URL's path is an empty string
1817-
if !has_host && path.len() > 1 && path_empty {
1818-
if let Some(index) = self.serialization.find(":") {
1819-
if self.serialization.len() > index + 2
1820-
&& self.serialization.as_bytes().get(index + 1) == Some(&b'/')
1821-
&& self.serialization.as_bytes().get(index + 2) == Some(&b'/')
1822-
{
1823-
self.serialization.insert_str(index + ":".len(), "/.");
1824-
self.path_start += "/.".len() as u32;
1825-
}
1826-
}
1827-
}
1828-
18291777
self.restore_after_path(old_after_path_pos, &after_path);
18301778
}
18311779

url/tests/expected_failures.txt

+4
Original file line numberDiff line numberDiff line change
@@ -41,3 +41,7 @@
4141
<file://monkey/> set pathname to <\\\\>
4242
<file:///unicorn> set pathname to <//\\/>
4343
<file:///unicorn> set pathname to <//monkey/..//>
44+
<non-spec:/> set pathname to </.//p>
45+
<non-spec:/> set pathname to </..//p>
46+
<non-spec:/> set pathname to <//p>
47+
<non-spec:/.//> set pathname to <p>

0 commit comments

Comments
 (0)