@@ -3779,6 +3779,8 @@ interface CSSStyleDeclaration {
3779
3779
all: string;
3780
3780
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/animation) */
3781
3781
animation: string;
3782
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/animation-composition) */
3783
+ animationComposition: string;
3782
3784
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/animation-delay) */
3783
3785
animationDelay: string;
3784
3786
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/animation-direction) */
@@ -6923,7 +6925,11 @@ interface Document extends Node, DocumentOrShadowRoot, FontFaceSource, GlobalEve
6923
6925
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/referrer)
6924
6926
*/
6925
6927
readonly referrer: string;
6926
- /** @deprecated */
6928
+ /**
6929
+ * @deprecated
6930
+ *
6931
+ * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/rootElement)
6932
+ */
6927
6933
readonly rootElement: SVGSVGElement | null;
6928
6934
/**
6929
6935
* Retrieves a collection of all script objects in the document.
@@ -21157,6 +21163,7 @@ interface ShadowRoot extends DocumentFragment, DocumentOrShadowRoot, InnerHTML {
21157
21163
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ShadowRoot/mode) */
21158
21164
readonly mode: ShadowRootMode;
21159
21165
onslotchange: ((this: ShadowRoot, ev: Event) => any) | null;
21166
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ShadowRoot/slotAssignment) */
21160
21167
readonly slotAssignment: SlotAssignmentMode;
21161
21168
/** Throws a "NotSupportedError" DOMException if context object is a shadow root. */
21162
21169
addEventListener<K extends keyof ShadowRootEventMap>(type: K, listener: (this: ShadowRoot, ev: ShadowRootEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
0 commit comments