diff --git a/source b/source
index 105defa5717..77e94db834a 100644
--- a/source
+++ b/source
@@ -94048,7 +94048,7 @@ typedef (WindowProxy or MessagePort or ServiceWo
value it was initialized to. It represents, in cross-document messaging and
channel messaging, the MessagePort
array being sent.
-
+
The initMessageEvent()
method must initialize the event in a manner analogous to the similarly-named initEvent()
method.
@@ -99216,6 +99216,8 @@ interface StorageEvent : Event {
readonly attribute DOMString? newValue;
readonly attribute USVString 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 {
@@ -99269,6 +99271,11 @@ dictionary StorageEventInit : EventInit {
data-x="dom-StorageEvent-storageArea">storageArea attributes must return the values
they were initialized to.
+
+ The initStorageEvent()
+ method must initialize the event in a manner analogous to the similarly-named initEvent()
method.
+