From f66d2d45e3c050bd32b37b55e6e8b20e47775f0d Mon Sep 17 00:00:00 2001 From: Hiroyuki Ikezoe Date: Tue, 20 May 2025 20:37:26 +0000 Subject: [PATCH] Bug 1967169 - Explicitly set layout.scroll.disable-pixel-alignment to test_frame_reconstruction.html. r=dlrobertson Differential Revision: https://phabricator.services.mozilla.com/D249923 --- gfx/layers/apz/test/mochitest/test_frame_reconstruction.html | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gfx/layers/apz/test/mochitest/test_frame_reconstruction.html b/gfx/layers/apz/test/mochitest/test_frame_reconstruction.html index 1031701a3bdf..e5ef6db1b19c 100644 --- a/gfx/layers/apz/test/mochitest/test_frame_reconstruction.html +++ b/gfx/layers/apz/test/mochitest/test_frame_reconstruction.html @@ -208,7 +208,8 @@ async function test() { if (isApzEnabled()) { SimpleTest.waitForExplicitFinish(); SimpleTest.expectAssertions(0, 1); // this test triggers an assertion, see bug 1247050 - waitUntilApzStable() + SpecialPowers.pushPrefEnv({ set: [ ["layout.scroll.disable-pixel-alignment", true] ]}) + .then(waitUntilApzStable) .then(test) .then(SimpleTest.finish, SimpleTest.finishWithFailure); }