@webref/idl 3.75.3 → 3.76.0
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/SVG.idl +0 -6
- package/css-animations-2.idl +9 -0
- package/css-sizing-4.idl +8 -0
- package/css-transitions-2.idl +9 -0
- package/package.json +1 -1
- package/streams.idl +1 -1
- package/webmcp.idl +1 -0
package/SVG.idl
CHANGED
|
@@ -13,7 +13,6 @@ interface SVGElement : Element {
|
|
|
13
13
|
};
|
|
14
14
|
|
|
15
15
|
SVGElement includes GlobalEventHandlers;
|
|
16
|
-
SVGElement includes SVGElementInstance;
|
|
17
16
|
SVGElement includes HTMLOrSVGElement;
|
|
18
17
|
|
|
19
18
|
dictionary SVGBoundingBoxOptions {
|
|
@@ -309,11 +308,6 @@ SVGUseElement includes SVGURIReference;
|
|
|
309
308
|
interface SVGUseElementShadowRoot : ShadowRoot {
|
|
310
309
|
};
|
|
311
310
|
|
|
312
|
-
interface mixin SVGElementInstance {
|
|
313
|
-
[SameObject] readonly attribute SVGElement? correspondingElement;
|
|
314
|
-
[SameObject] readonly attribute SVGUseElement? correspondingUseElement;
|
|
315
|
-
};
|
|
316
|
-
|
|
317
311
|
[Exposed=Window]
|
|
318
312
|
interface ShadowAnimation : Animation {
|
|
319
313
|
constructor(Animation source, (Element or CSSPseudoElement) newTarget);
|
package/css-animations-2.idl
CHANGED
|
@@ -3,6 +3,15 @@
|
|
|
3
3
|
// (https://github.com/w3c/webref)
|
|
4
4
|
// Source: CSS Animations Module Level 2 (https://drafts.csswg.org/css-animations-2/)
|
|
5
5
|
|
|
6
|
+
[Exposed=Window]
|
|
7
|
+
partial interface AnimationEvent {
|
|
8
|
+
readonly attribute CSSAnimation? animation;
|
|
9
|
+
};
|
|
10
|
+
|
|
11
|
+
partial dictionary AnimationEventInit {
|
|
12
|
+
CSSAnimation? animation = null;
|
|
13
|
+
};
|
|
14
|
+
|
|
6
15
|
[Exposed=Window]
|
|
7
16
|
interface CSSAnimation : Animation {
|
|
8
17
|
readonly attribute CSSOMString animationName;
|
package/css-sizing-4.idl
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
// GENERATED CONTENT - DO NOT EDIT
|
|
2
|
+
// Content was automatically extracted by Reffy into webref
|
|
3
|
+
// (https://github.com/w3c/webref)
|
|
4
|
+
// Source: CSS Box Sizing Module Level 4 (https://drafts.csswg.org/css-sizing-4/)
|
|
5
|
+
|
|
6
|
+
partial interface Window {
|
|
7
|
+
undefined requestResize();
|
|
8
|
+
};
|
package/css-transitions-2.idl
CHANGED
|
@@ -7,6 +7,15 @@
|
|
|
7
7
|
interface CSSStartingStyleRule : CSSGroupingRule {
|
|
8
8
|
};
|
|
9
9
|
|
|
10
|
+
[Exposed=Window]
|
|
11
|
+
partial interface TransitionEvent {
|
|
12
|
+
readonly attribute CSSTransition? animation;
|
|
13
|
+
};
|
|
14
|
+
|
|
15
|
+
partial dictionary TransitionEventInit {
|
|
16
|
+
CSSTransition? animation = null;
|
|
17
|
+
};
|
|
18
|
+
|
|
10
19
|
[Exposed=Window]
|
|
11
20
|
interface CSSTransition : Animation {
|
|
12
21
|
readonly attribute CSSOMString transitionProperty;
|
package/package.json
CHANGED
package/streams.idl
CHANGED
|
@@ -114,7 +114,7 @@ interface ReadableByteStreamController {
|
|
|
114
114
|
|
|
115
115
|
[Exposed=*]
|
|
116
116
|
interface ReadableStreamBYOBRequest {
|
|
117
|
-
readonly attribute
|
|
117
|
+
readonly attribute Uint8Array? view;
|
|
118
118
|
|
|
119
119
|
undefined respond([EnforceRange] unsigned long long bytesWritten);
|
|
120
120
|
undefined respondWithNewView(ArrayBufferView view);
|
package/webmcp.idl
CHANGED