From 2a2236d4d955ac21ecc2bd1de1b9af767d8d31e4 Mon Sep 17 00:00:00 2001 From: Shadow Date: Wed, 21 May 2025 15:17:40 +0000 Subject: [PATCH] No issue - Remove obsolete pref. Bug 1356751 Remove unused pref `layout.frame_rate.precise` --- modules/libpref/init/all.js | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/modules/libpref/init/all.js b/modules/libpref/init/all.js index fc33216025..aa9ec326a4 100644 --- a/modules/libpref/init/all.js +++ b/modules/libpref/init/all.js @@ -2728,18 +2728,6 @@ pref("layout.frame_rate", -1); pref("layout.display-list.dump", false); pref("layout.display-list.dump-content", false); -// pref to control precision of the frame rate timer. When true, -// we use a "precise" timer, which means each notification fires -// Nms after the start of the last notification. That means if the -// processing of the notification is slow, the timer can fire immediately -// after we've just finished processing the last notification, which might -// lead to starvation problems. -// When false, we use a "slack" timer which fires Nms after the *end* -// of the last notification. This can give less tight frame rates -// but provides more time for other operations when the browser is -// heavily loaded. -pref("layout.frame_rate.precise", false); - // pref to control whether layout warnings that are hit quite often are enabled pref("layout.spammy_warnings.enabled", false);