mirror of
https://github.com/servo/servo.git
synced 2025-06-08 00:23:30 +00:00
Auto merge of #11707 - jdm:resize_warn, r=Ms2ger
Avoid frequent intermittent failure in tests. - [X] `./mach build -d` does not report any errors - [X] `./mach test-tidy` does not report any errors - [X] These changes fix #11613 (github issue number if applicable). - [X] These changes do not require tests because they address a frequent nondeterministic panic that occurs in other tests. <!-- Reviewable:start --> --- This change is [<img src="https://reviewable.io/review_button.svg" height="35" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/11707) <!-- Reviewable:end -->
This commit is contained in:
commit
2fb8525919
1 changed files with 1 additions and 1 deletions
|
@ -1087,7 +1087,7 @@ impl ScriptThread {
|
|||
load.window_size = Some(size);
|
||||
return;
|
||||
}
|
||||
panic!("resize sent to nonexistent pipeline");
|
||||
warn!("resize sent to nonexistent pipeline");
|
||||
}
|
||||
|
||||
fn handle_viewport(&self, id: PipelineId, rect: Rect<f32>) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue