mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-01 05:39:11 +00:00
LibWeb: Implement IDBRequest::source()
This commit is contained in:
parent
48fae7b64f
commit
a4b876b43e
Notes:
github-actions[bot]
2024-11-26 13:52:39 +00:00
Author: https://github.com/stelar7
Commit: a4b876b43e
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/2236
Reviewed-by: https://github.com/gmta ✅
2 changed files with 10 additions and 2 deletions
|
@ -1,11 +1,14 @@
|
|||
#import <DOM/EventTarget.idl>
|
||||
#import <IndexedDB/IDBCursor.idl>
|
||||
#import <IndexedDB/IDBIndex.idl>
|
||||
#import <IndexedDB/IDBObjectStore.idl>
|
||||
|
||||
// https://w3c.github.io/IndexedDB/#idbrequest
|
||||
[Exposed=(Window,Worker)]
|
||||
interface IDBRequest : EventTarget {
|
||||
readonly attribute any result;
|
||||
readonly attribute DOMException? error;
|
||||
[FIXME] readonly attribute (IDBObjectStore or IDBIndex or IDBCursor)? source;
|
||||
readonly attribute (IDBObjectStore or IDBIndex or IDBCursor)? source;
|
||||
[FIXME] readonly attribute IDBTransaction? transaction;
|
||||
[FIXME] readonly attribute IDBRequestReadyState readyState;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue