diff options
Diffstat (limited to 'components/script/dom/window.rs')
-rw-r--r-- | components/script/dom/window.rs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/components/script/dom/window.rs b/components/script/dom/window.rs index 8a915cbc998..bb7a5563d0f 100644 --- a/components/script/dom/window.rs +++ b/components/script/dom/window.rs @@ -761,6 +761,11 @@ impl<'a> WindowHelpers for JSRef<'a, Window> { fn thaw(self) { self.timers.resume(); + + // Push the document title to the compositor since we are + // activating this document due to a navigation. + let document = self.Document().root(); + document.r().title_changed(); } fn freeze(self) { |