These no longer serve any purpose now that we run the IDLGenerator on all of these files at once.
7 lines
229 B
Text
7 lines
229 B
Text
// https://w3c.github.io/IndexedDB/#idbopendbrequest
|
|
[Exposed=(Window,Worker)]
|
|
interface IDBOpenDBRequest : IDBRequest {
|
|
// Event handlers:
|
|
attribute EventHandler onblocked;
|
|
attribute EventHandler onupgradeneeded;
|
|
};
|