LibWeb: Implement IDBRequest::source()

This commit is contained in:
stelar7 2024-11-07 20:02:13 +01:00 committed by Jelle Raaijmakers
commit a4b876b43e
Notes: github-actions[bot] 2024-11-26 13:52:39 +00:00
2 changed files with 10 additions and 2 deletions

View file

@ -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;