No issue - Remove obsolete pref.

Bug 1356751

Remove unused pref `layout.frame_rate.precise`
This commit is contained in:
Shadow 2025-05-21 15:17:40 +00:00 committed by roytam1
commit 2a2236d4d9

View file

@ -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);