LibWeb: Implement IDBRequest::ready_state()

This commit is contained in:
stelar7 2024-11-07 20:17:58 +01:00 committed by Jelle Raaijmakers
commit 29ddaa76e7
Notes: github-actions[bot] 2024-11-26 13:52:33 +00:00
3 changed files with 13 additions and 2 deletions

View file

@ -10,7 +10,7 @@ interface IDBRequest : EventTarget {
readonly attribute DOMException? error;
readonly attribute (IDBObjectStore or IDBIndex or IDBCursor)? source;
[FIXME] readonly attribute IDBTransaction? transaction;
[FIXME] readonly attribute IDBRequestReadyState readyState;
readonly attribute IDBRequestReadyState readyState;
// Event handlers:
attribute EventHandler onsuccess;