From d142cd0614953d00680cfb45a3c84eb1fccbef95 Mon Sep 17 00:00:00 2001 From: Yati Sagade Date: Fri, 5 Jan 2018 15:57:40 +0100 Subject: [PATCH] CSS Paint API: Use a high timeout for worklet threads in tests Fixes #19631 Since the addition of timeouts to paint worklets, CSS paint API threads were failing intermittently because of the timeouts being fired. This is because the timeouts are quite tight, to account for the 60fps requirement. Bumping up the timeout threshold for these tests alone is the easiest solution. --- tests/wpt/mozilla/meta/mozilla/css-paint-api/__dir__.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/wpt/mozilla/meta/mozilla/css-paint-api/__dir__.ini b/tests/wpt/mozilla/meta/mozilla/css-paint-api/__dir__.ini index 3bd8f8ce1a5..40806a19f49 100644 --- a/tests/wpt/mozilla/meta/mozilla/css-paint-api/__dir__.ini +++ b/tests/wpt/mozilla/meta/mozilla/css-paint-api/__dir__.ini @@ -1 +1 @@ -prefs: [dom.worklet.enabled:true] +prefs: [dom.worklet.enabled:true, dom.worklet.timeout_ms:5000]