diff --git a/examples/index.ts b/examples/index.ts index aded89d2..b6524b4b 100644 --- a/examples/index.ts +++ b/examples/index.ts @@ -262,9 +262,9 @@ async function runAutomation(driverName: string, logFps: boolean) { const snapshot = (window as any).snapshot as | ((testName: string) => Promise) | undefined; - // Allow at least a frame to render for any existing RaF pause to - // resume and finish rendering the scene before taking the snapshot - await delay(17); + // Allow some time for all images to load and the RaF to unpause + // and render if needed. + await delay(200); if (snapshot) { console.log(`Calling snapshot(${testName})`); await snapshot(testName); diff --git a/visual-regression/certified-snapshots/chromium-ci/alpha-blending-2.png b/visual-regression/certified-snapshots/chromium-ci/alpha-blending-2.png index 5071b4eb..bfb998dd 100644 Binary files a/visual-regression/certified-snapshots/chromium-ci/alpha-blending-2.png and b/visual-regression/certified-snapshots/chromium-ci/alpha-blending-2.png differ