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.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/components/script/dom/window.rs b/components/script/dom/window.rs
index 4365ba44999..5f5b0bda04a 100644
--- a/components/script/dom/window.rs
+++ b/components/script/dom/window.rs
@@ -868,7 +868,7 @@ impl WindowMethods for Window {
impl Window {
pub fn get_runnable_wrapper(&self) -> RunnableWrapper {
RunnableWrapper {
- cancelled: self.ignore_further_async_events.clone()
+ cancelled: Some(self.ignore_further_async_events.clone()),
}
}