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: baselines/dom.generated.d.ts
+39-25Lines changed: 39 additions & 25 deletions
Original file line number
Diff line number
Diff line change
@@ -5996,7 +5996,7 @@ declare var CSSStartingStyleRule: {
5996
5996
};
5997
5997
5998
5998
/**
5999
-
* The **`CSSStyleDeclaration`** interface represents an object that is a CSS declaration block, and exposes style information and various style-related methods and properties.
5999
+
* The **`CSSStyleDeclaration`** interface is the base class for objects that represent CSS declaration blocks with different supported sets of CSS style information:
@@ -6060,6 +6060,11 @@ declare var CSSStyleDeclaration: {
6060
6060
new(): CSSStyleDeclaration;
6061
6061
};
6062
6062
6063
+
/**
6064
+
* The **`CSSStyleProperties`** interface of the CSS Object Model (CSSOM) represents inline or computed styles available on an element, or the styles associated with a CSS style rule.
@@ -9344,7 +9353,7 @@ declare var DOMMatrixReadOnly: {
9344
9353
*/
9345
9354
interface DOMParser {
9346
9355
/**
9347
-
* The **`parseFromString()`** method of the DOMParser interface parses a string containing either HTML or XML, returning an HTMLDocument or an XMLDocument.
9356
+
* The **`parseFromString()`** method of the DOMParser interface parses an input containing either HTML or XML, returning a Document with the type given in the Document/contentType property.
* The Element interface's **`scrollIntoView()`** method scrolls the element's ancestor containers such that the element on which `scrollIntoView()` is called is visible to the user.
* The **`Window.getComputedStyle()`** method returns an object containing the values of all CSS properties of an element, after applying active stylesheets and resolving any basic computation those values may contain.
37385
+
* The **`Window.getComputedStyle()`** method returns a live read-only CSSStyleProperties object containing the resolved values of all CSS properties of an element, after applying active stylesheets and resolving any computation those values may contain.
* The **`window.stop()`** stops further resource loading in the current browsing context, equivalent to the stop button in the browser.
37475
37487
*
@@ -39534,7 +39546,7 @@ declare function confirm(message?: string): boolean;
39534
39546
*/
39535
39547
declare function focus(): void;
39536
39548
/**
39537
-
* The **`Window.getComputedStyle()`** method returns an object containing the values of all CSS properties of an element, after applying active stylesheets and resolving any basic computation those values may contain.
39549
+
* The **`Window.getComputedStyle()`** method returns a live read-only CSSStyleProperties object containing the resolved values of all CSS properties of an element, after applying active stylesheets and resolving any computation those values may contain.
0 commit comments