From 605d83cb1c244f6ee04d6448b275fe89009397b2 Mon Sep 17 00:00:00 2001 From: Jeff Muizelaar Date: Thu, 15 Aug 2019 20:41:00 +0000 Subject: [PATCH] Bug 1574281. Allow PWebRenderBridge::Msg_GetSnapshot to happen earlier. r=mconley The graphics sanity test code calls GetSnapshot early on (see bug 1573852). We currently allow it later, but there's nothing that keeps it from happening early so we should allow it. Differential Revision: https://phabricator.services.mozilla.com/D42191 --HG-- extra : moz-landing-system : lando --- .../content/test/performance/browser_startup_syncIPC.js | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/browser/base/content/test/performance/browser_startup_syncIPC.js b/browser/base/content/test/performance/browser_startup_syncIPC.js index 0061e4dd900d..64e6c22bf3ae 100644 --- a/browser/base/content/test/performance/browser_startup_syncIPC.js +++ b/browser/base/content/test/performance/browser_startup_syncIPC.js @@ -93,6 +93,12 @@ const startupPhases = { ignoreIfUnused: true, // Only on Win10 64 maxCount: 1, }, + { + name: "PWebRenderBridge::Msg_GetSnapshot", + condition: WIN && WEBRENDER, + ignoreIfUnused: true, // Sometimes in the next phase on Windows10 QR + maxCount: 1, + }, { name: "PCompositorBridge::Msg_WillClose", condition: WIN,