mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-12-08 06:09:58 +00:00
LibWeb: Add stub interface for IDBOpenDBRequest
This commit is contained in:
parent
bfa330914d
commit
3aa36caa52
Notes:
sideshowbarker
2024-07-16 21:42:29 +09:00
Author: https://github.com/shannonbooth
Commit: 3aa36caa52
Pull-request: https://github.com/SerenityOS/serenity/pull/24377
Reviewed-by: https://github.com/tcl3
6 changed files with 67 additions and 0 deletions
9
Userland/Libraries/LibWeb/IndexedDB/IDBOpenDBRequest.idl
Normal file
9
Userland/Libraries/LibWeb/IndexedDB/IDBOpenDBRequest.idl
Normal 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;
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue