You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/DOM.res
+2-29Lines changed: 2 additions & 29 deletions
Original file line number
Diff line number
Diff line change
@@ -27,6 +27,7 @@ open PictureInPicture
27
27
openStorage
28
28
openWebLocks
29
29
openCSSFontLoading
30
+
openIndexedDB
30
31
31
32
typeshadowRootMode=
32
33
| @as("closed") Closed
@@ -97,18 +98,6 @@ type shareData = {
97
98
mutableurl: string,
98
99
}
99
100
100
-
/**
101
-
A type returned by some APIs which contains a list of DOMString (strings).
102
-
[See DOMStringList on MDN](https://developer.mozilla.org/docs/Web/API/DOMStringList)
103
-
*/
104
-
typedomStringList= {
105
-
/**
106
-
Returns the number of strings in strings.
107
-
[Read more on MDN](https://developer.mozilla.org/docs/Web/API/DOMStringList/length)
108
-
*/
109
-
length: int,
110
-
}
111
-
112
101
/**
113
102
The location (URL) of the object it is linked to. Changes done on it are reflected on the object it relates to. Both the Document and Window interface have such a linked Location, accessible via Document.location and Window.location respectively.
114
103
[See Location on MDN](https://developer.mozilla.org/docs/Web/API/Location)
@@ -5722,7 +5711,7 @@ If the contents are sandboxed into a unique origin (e.g. in an iframe with the s
5722
5711
Retrieves a collection of all a objects that specify the href property and all area objects in the document.
5723
5712
[Read more on MDN](https://developer.mozilla.org/docs/Web/API/Document/links)
5724
5713
*/
5725
-
links: htmlCollectionOf<htmlElement>,
5714
+
links: htmlCollectionOf<any>,
5726
5715
/**
5727
5716
Retrieves a collection, in source order, of all form objects in the document.
5728
5717
[Read more on MDN](https://developer.mozilla.org/docs/Web/API/Document/forms)
@@ -8993,22 +8982,6 @@ type blobCallback = blob => unit
0 commit comments