From a3ef9ae42238879a43871b791c14fd917b477d07 Mon Sep 17 00:00:00 2001 From: Josh Matthews Date: Fri, 10 Jun 2016 14:54:44 +0100 Subject: [PATCH] Avoid frequent intermittent failure in tests. --- components/script/script_thread.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/script/script_thread.rs b/components/script/script_thread.rs index 1b48694bb25..390bd9926fb 100644 --- a/components/script/script_thread.rs +++ b/components/script/script_thread.rs @@ -1083,7 +1083,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) {