mirror of
https://github.com/servo/servo.git
synced 2025-07-23 07:13:52 +01:00
Change Response's statusText default value from 'Ok' to an empty string
This commit is contained in:
parent
524bd722ef
commit
73f11d69ea
6 changed files with 11 additions and 12 deletions
|
@ -575,6 +575,8 @@ fn scheme_fetch(
|
|||
.headers
|
||||
.typed_insert(ContentType::from(mime::TEXT_HTML_UTF_8));
|
||||
*response.body.lock().unwrap() = ResponseBody::Done(vec![]);
|
||||
response.status = Some((StatusCode::OK, "OK".to_string()));
|
||||
response.raw_status = Some((StatusCode::OK.as_u16(), b"OK".to_vec()));
|
||||
response
|
||||
},
|
||||
|
||||
|
@ -588,6 +590,8 @@ fn scheme_fetch(
|
|||
Response::new(url, ResourceFetchTiming::new(request.timing_type()));
|
||||
*response.body.lock().unwrap() = ResponseBody::Done(bytes);
|
||||
response.headers.typed_insert(ContentType::from(mime));
|
||||
response.status = Some((StatusCode::OK, "OK".to_string()));
|
||||
response.raw_status = Some((StatusCode::OK.as_u16(), b"OK".to_vec()));
|
||||
response
|
||||
},
|
||||
Err(_) => {
|
||||
|
@ -689,6 +693,9 @@ fn scheme_fetch(
|
|||
};
|
||||
|
||||
let mut response = Response::new(url, ResourceFetchTiming::new(request.timing_type()));
|
||||
response.status = Some((StatusCode::OK, "OK".to_string()));
|
||||
response.raw_status = Some((StatusCode::OK.as_u16(), b"OK".to_vec()));
|
||||
|
||||
if is_range_request {
|
||||
partial_content(&mut response);
|
||||
}
|
||||
|
|
|
@ -534,7 +534,7 @@ impl Metadata {
|
|||
charset: None,
|
||||
headers: None,
|
||||
// https://fetch.spec.whatwg.org/#concept-response-status-message
|
||||
status: Some((200, b"OK".to_vec())),
|
||||
status: Some((200, b"".to_vec())),
|
||||
https_state: HttpsState::None,
|
||||
referrer: None,
|
||||
referrer_policy: None,
|
||||
|
|
|
@ -131,8 +131,8 @@ impl Response {
|
|||
termination_reason: None,
|
||||
url: Some(url),
|
||||
url_list: vec![],
|
||||
status: Some((StatusCode::OK, "OK".to_string())),
|
||||
raw_status: Some((200, b"OK".to_vec())),
|
||||
status: Some((StatusCode::OK, "".to_string())),
|
||||
raw_status: Some((200, b"".to_vec())),
|
||||
headers: HeaderMap::new(),
|
||||
body: Arc::new(Mutex::new(ResponseBody::Empty)),
|
||||
cache_state: CacheState::None,
|
||||
|
|
|
@ -27,7 +27,7 @@ Response implements Body;
|
|||
|
||||
dictionary ResponseInit {
|
||||
unsigned short status = 200;
|
||||
ByteString statusText = "OK";
|
||||
ByteString statusText = "";
|
||||
HeadersInit headers;
|
||||
};
|
||||
|
||||
|
|
|
@ -44,7 +44,3 @@
|
|||
|
||||
[Check response clone use structureClone for teed ReadableStreams (DataViewchunk)]
|
||||
expected: FAIL
|
||||
|
||||
[Check Response's clone with default values, without body]
|
||||
expected: FAIL
|
||||
|
||||
|
|
|
@ -2,7 +2,3 @@
|
|||
type: testharness
|
||||
[Check default value for body attribute]
|
||||
expected: FAIL
|
||||
|
||||
[Check default value for statusText attribute]
|
||||
expected: FAIL
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue