mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-22 09:19:03 +00:00
10 lines
265 B
Plaintext
10 lines
265 B
Plaintext
#import <IndexedDB/IDBRequest.idl>
|
|
|
|
// https://w3c.github.io/IndexedDB/#idbopendbrequest
|
|
[Exposed=(Window,Worker)]
|
|
interface IDBOpenDBRequest : IDBRequest {
|
|
// Event handlers:
|
|
attribute EventHandler onblocked;
|
|
attribute EventHandler onupgradeneeded;
|
|
};
|