mirror of
https://github.com/servo/servo.git
synced 2025-08-03 04:30:10 +01:00
parent
61fe737885
commit
5347e25d1a
3 changed files with 33 additions and 29 deletions
|
@ -16,6 +16,12 @@ interface StorageEvent : Event {
|
|||
readonly attribute DOMString? newValue;
|
||||
readonly attribute DOMString url;
|
||||
readonly attribute Storage? storageArea;
|
||||
|
||||
|
||||
void initStorageEvent(DOMString type, optional boolean bubbles = false,
|
||||
optional boolean cancelable = false, optional DOMString? key = null, optional
|
||||
DOMString? oldValue = null, optional DOMString? newValue = null, optional
|
||||
USVString url = "", optional Storage? storageArea = null);
|
||||
};
|
||||
|
||||
dictionary StorageEventInit : EventInit {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue