mirror of
https://github.com/servo/servo.git
synced 2025-06-29 03:23:41 +01:00
parent
f9c69e84a9
commit
a91176e7fc
2 changed files with 4 additions and 14 deletions
|
@ -783,8 +783,10 @@ impl XMLHttpRequestMethods for XMLHttpRequest {
|
|||
if !first {
|
||||
vec.extend(", ".as_bytes());
|
||||
}
|
||||
first = false;
|
||||
vec.extend(value.as_bytes());
|
||||
if let Ok(v) = str::from_utf8(value.as_bytes()).map(|s| s.trim().as_bytes()) {
|
||||
vec.extend(v);
|
||||
first = false;
|
||||
}
|
||||
vec
|
||||
});
|
||||
|
||||
|
|
|
@ -6,15 +6,3 @@
|
|||
[Header value: \\0hello_world]
|
||||
expected: FAIL
|
||||
|
||||
[Header value: hello_world[tab\]]
|
||||
expected: FAIL
|
||||
|
||||
[Header value: [tab\]hello_world[tab\]]
|
||||
expected: FAIL
|
||||
|
||||
[Header value: hello_world__]
|
||||
expected: FAIL
|
||||
|
||||
[Header value: __hello_world__]
|
||||
expected: FAIL
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue