mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-22 09:18:55 +00:00
LibWeb: Use 'FIXME' extended attribute where possible
This improves the debuggability of many live web pages :^)
This commit is contained in:
parent
7c69b4737b
commit
4fe0cbcf85
Notes:
sideshowbarker
2024-07-17 18:06:52 +09:00
Author: https://github.com/shannonbooth
Commit: 4fe0cbcf85
Pull-request: https://github.com/SerenityOS/serenity/pull/24377
Reviewed-by: https://github.com/tcl3
55 changed files with 184 additions and 187 deletions
|
@ -5,11 +5,11 @@
|
|||
interface IDBFactory {
|
||||
[NewObject] IDBOpenDBRequest open(DOMString name,
|
||||
optional [EnforceRange] unsigned long long version);
|
||||
// FIXME: [NewObject] IDBOpenDBRequest deleteDatabase(DOMString name);
|
||||
[FIXME, NewObject] IDBOpenDBRequest deleteDatabase(DOMString name);
|
||||
|
||||
// FIXME: Promise<sequence<IDBDatabaseInfo>> databases();
|
||||
[FIXME] Promise<sequence<IDBDatabaseInfo>> databases();
|
||||
|
||||
// FIXME: short cmp(any first, any second);
|
||||
[FIXME] short cmp(any first, any second);
|
||||
};
|
||||
|
||||
dictionary IDBDatabaseInfo {
|
||||
|
|
|
@ -3,11 +3,11 @@
|
|||
// 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;
|
||||
[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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue