mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 15:40:19 +00:00
LibWeb: Mark IDBFactory.open() with FIXME extended attribute in IDL
The stub implementation broke x.com and probably other sites as well, but let's at least mark it FIXME so we get some debug logging about it.
This commit is contained in:
parent
79870bc603
commit
899c38d342
Notes:
sideshowbarker
2024-07-17 02:59:43 +09:00
Author: https://github.com/awesomekling Commit: https://github.com/SerenityOS/serenity/commit/899c38d342
1 changed files with 2 additions and 2 deletions
|
@ -1,8 +1,8 @@
|
|||
// https://w3c.github.io/IndexedDB/#idbfactory
|
||||
[Exposed=(Window,Worker)]
|
||||
interface IDBFactory {
|
||||
// FIXME: [NewObject] IDBOpenDBRequest open(DOMString name,
|
||||
// optional [EnforceRange] unsigned long long version);
|
||||
[FIXME, NewObject] IDBOpenDBRequest open(DOMString name,
|
||||
optional [EnforceRange] unsigned long long version);
|
||||
[FIXME, NewObject] IDBOpenDBRequest deleteDatabase(DOMString name);
|
||||
|
||||
[FIXME] Promise<sequence<IDBDatabaseInfo>> databases();
|
||||
|
|
Loading…
Reference in a new issue