Skip to content

Commit

Permalink
LibWeb: Remove IDBRequest.idl FIXME
Browse files Browse the repository at this point in the history
  • Loading branch information
shlyakpavel authored and gmta committed Dec 1, 2024
1 parent e02fd4c commit 4d5acc7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Libraries/LibWeb/IndexedDB/IDBRequest.idl
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ interface IDBRequest : EventTarget {
readonly attribute any result;
readonly attribute DOMException? error;
readonly attribute (IDBObjectStore or IDBIndex or IDBCursor)? source;
[FIXME] readonly attribute IDBTransaction? transaction;
readonly attribute IDBTransaction? transaction;
readonly attribute IDBRequestReadyState readyState;

// Event handlers:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Pass IDBFactory.open() - new database has default version
Pass IDBFactory.open() - new database is empty
Pass IDBFactory.open() - open database with a lower version than current
Pass IDBFactory.open() - open database with a higher version than current
Fail IDBFactory.open() - error in version change transaction aborts open Cannot access property "abort" on undefined object "e.target.transaction"
Fail IDBFactory.open() - error in version change transaction aborts open undefined is not a function (evaluated from '<object>.abort')
Pass Calling open() with version argument -1 should throw TypeError.
Pass Calling open() with version argument -0.5 should throw TypeError.
Pass Calling open() with version argument 0 should throw TypeError.
Expand Down

0 comments on commit 4d5acc7

Please sign in to comment.