LibWeb: Add stub interface for IDBOpenDBRequest

This commit is contained in:
Shannon Booth 2024-05-19 18:07:06 +12:00 committed by Andreas Kling
parent bfa330914d
commit 3aa36caa52
Notes: sideshowbarker 2024-07-16 21:42:29 +09:00
6 changed files with 67 additions and 0 deletions

View file

@ -0,0 +1,9 @@
#import <IndexedDB/IDBRequest.idl>
// https://w3c.github.io/IndexedDB/#idbopendbrequest
[Exposed=(Window,Worker)]
interface IDBOpenDBRequest : IDBRequest {
// Event handlers:
// FIXME: attribute EventHandler onblocked;
// FIXME: attribute EventHandler onupgradeneeded;
};