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:
bors-servo 2016-06-10 10:06:29 -05:00 committed by GitHub
commit 2fb8525919

View file

@ -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>) {