ladybird/Userland/Libraries/LibWeb/IndexedDB/IDBRequest.idl
Shannon Booth 4fe0cbcf85 LibWeb: Use 'FIXME' extended attribute where possible
This improves the debuggability of many live web pages :^)
2024-05-19 16:24:11 +02:00

20 lines
621 B
Text

#import <DOM/EventTarget.idl>
// https://w3c.github.io/IndexedDB/#idbrequest
[Exposed=(Window,Worker)]
interface IDBRequest : EventTarget {
[FIXME] readonly attribute any result;
[FIXME] readonly attribute DOMException? error;
[FIXME] readonly attribute (IDBObjectStore or IDBIndex or IDBCursor)? source;
[FIXME] readonly attribute IDBTransaction? transaction;
[FIXME] readonly attribute IDBRequestReadyState readyState;
// Event handlers:
// FIXME: attribute EventHandler onsuccess;
// FIXME: attribute EventHandler onerror;
};
enum IDBRequestReadyState {
"pending",
"done"
};