diff options
Diffstat (limited to 'components/script/dom/window.rs')
-rw-r--r-- | components/script/dom/window.rs | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/components/script/dom/window.rs b/components/script/dom/window.rs index 3795b3e58eb..cb5cbb09975 100644 --- a/components/script/dom/window.rs +++ b/components/script/dom/window.rs @@ -542,6 +542,16 @@ impl<'a> WindowMethods for &'a Window { doc.r().cancel_animation_frame(ident); } + // https://html.spec.whatwg.org/multipage/#dom-window-captureevents + fn CaptureEvents(self) { + // This method intentionally does nothing + } + + // https://html.spec.whatwg.org/multipage/#dom-window-releaseevents + fn ReleaseEvents(self) { + // This method intentionally does nothing + } + // check-tidy: no specs after this line fn Debug(self, message: DOMString) { debug!("{}", message); |