aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/dom/window.rs
diff options
context:
space:
mode:
Diffstat (limited to 'components/script/dom/window.rs')
-rw-r--r--components/script/dom/window.rs9
1 files changed, 9 insertions, 0 deletions
diff --git a/components/script/dom/window.rs b/components/script/dom/window.rs
index c8e4ccc832d..cb9d5abdf07 100644
--- a/components/script/dom/window.rs
+++ b/components/script/dom/window.rs
@@ -1583,6 +1583,15 @@ impl Window {
pub fn evaluate_media_queries_and_report_changes(&self) {
self.media_query_lists.evaluate_and_report_changes();
}
+
+ /// Slow down/speed up timers based on visibility.
+ pub fn alter_resource_utilization(&self, visible: bool) {
+ if visible {
+ self.upcast::<GlobalScope>().speed_up_timers();
+ } else {
+ self.upcast::<GlobalScope>().slow_down_timers();
+ }
+ }
}
impl Window {