@webref/idl 3.22.1 → 3.22.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/event-timing.idl +1 -6
- package/html.idl +1 -1
- package/package.json +1 -1
- package/webrtc-stats.idl +1 -0
package/event-timing.idl
CHANGED
|
@@ -18,15 +18,10 @@ interface EventCounts {
|
|
|
18
18
|
readonly maplike<DOMString, unsigned long long>;
|
|
19
19
|
};
|
|
20
20
|
|
|
21
|
-
[Exposed=Window]
|
|
22
|
-
interface InteractionCounts {
|
|
23
|
-
readonly maplike<DOMString, unsigned long long>;
|
|
24
|
-
};
|
|
25
|
-
|
|
26
21
|
[Exposed=Window]
|
|
27
22
|
partial interface Performance {
|
|
28
23
|
[SameObject] readonly attribute EventCounts eventCounts;
|
|
29
|
-
|
|
24
|
+
readonly attribute unsigned long long interactionCount;
|
|
30
25
|
};
|
|
31
26
|
|
|
32
27
|
partial dictionary PerformanceObserverInit {
|
package/html.idl
CHANGED
|
@@ -886,7 +886,7 @@ interface HTMLInputElement : HTMLElement {
|
|
|
886
886
|
[CEReactions] attribute DOMString formTarget;
|
|
887
887
|
[CEReactions] attribute unsigned long height;
|
|
888
888
|
attribute boolean indeterminate;
|
|
889
|
-
readonly attribute
|
|
889
|
+
readonly attribute HTMLDataListElement? list;
|
|
890
890
|
[CEReactions] attribute DOMString max;
|
|
891
891
|
[CEReactions] attribute long maxLength;
|
|
892
892
|
[CEReactions] attribute DOMString min;
|
package/package.json
CHANGED
package/webrtc-stats.idl
CHANGED