mirror of
https://github.com/servo/servo.git
synced 2025-08-06 06:00:15 +01:00
Make test-tidy check that braces have spaces before or after them
This commit is contained in:
parent
aee011a524
commit
64ac4f175f
10 changed files with 31 additions and 21 deletions
|
@ -959,7 +959,7 @@ impl XMLHttpRequest {
|
|||
|
||||
fn dispatch_response_progress_event(&self, type_: DOMString) {
|
||||
let len = self.response.borrow().len() as u64;
|
||||
let total = self.response_headers.borrow().get::<ContentLength>().map(|x| {**x as u64});
|
||||
let total = self.response_headers.borrow().get::<ContentLength>().map(|x| { **x as u64 });
|
||||
self.dispatch_progress_event(false, type_, len, total);
|
||||
}
|
||||
fn set_timeout(&self, duration_ms: u32) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue