LibWeb: Add methods to Window that must do nothing

This change adds the `captureEvents()` and `releaseEvents()` methods to
the window object. These methods are obsolete, but are still included
in the HTML specification, which says they must do nothing.
This commit is contained in:
Tim Ledbetter 2024-04-14 07:38:10 +01:00 committed by Andreas Kling
commit 88f3145f8a
Notes: sideshowbarker 2024-07-17 02:38:39 +09:00
5 changed files with 28 additions and 0 deletions

View file

@ -0,0 +1,2 @@
window.captureEvents() returns undefined: true
window.releaseEvents() returns undefined: true