Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 19 additions & 7 deletions baselines/dom.generated.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5376,7 +5376,7 @@ declare var CSSCounterStyleRule: {
*/
interface CSSFontFaceRule extends CSSRule {
/**
* The read-only **`style`** property of the CSSFontFaceRule interface contains a CSSStyleDeclaration object representing the descriptors available in the @font-face rule's body.
* The read-only **`style`** property of the CSSFontFaceRule interface returns a CSSFontFaceDescriptors object representing the descriptors available in the @font-face rule's body.
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSFontFaceRule/style)
*/
Expand Down Expand Up @@ -7389,7 +7389,7 @@ interface CSSStyleProperties extends CSSStyleDeclarationBase {
*/
columnWidth: string;
/**
* The **`columns`** CSS shorthand property sets the number of columns to use when drawing an element's contents, as well as those columns' widths.
* The **`columns`** CSS shorthand property sets the maximum number of columns to use when drawing an element's contents, along with the minimum width and maximum height of the element's columns.
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/columns)
*/
Expand Down Expand Up @@ -11288,7 +11288,7 @@ declare var CryptoKey: {
};

/**
* The **`CustomElementRegistry`** interface provides methods for registering custom elements and querying registered elements. To get an instance of it, use the window.customElements property.
* The **`CustomElementRegistry`** interface provides methods for registering custom elements and querying registered elements. To get an instance of it, use the window.customElements property. To create a scoped registry, use the CustomElementRegistry() constructor.
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CustomElementRegistry)
*/
Expand All @@ -11311,7 +11311,11 @@ interface CustomElementRegistry {
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CustomElementRegistry/getName)
*/
getName(constructor: CustomElementConstructor): string | null;
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CustomElementRegistry/initialize) */
/**
* The **`initialize()`** method of the CustomElementRegistry interface associates this registry with a DOM subtree, setting the customElementRegistry of each inclusive descendant that doesn't already have one, and attempting to upgrade any custom elements found.
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CustomElementRegistry/initialize)
*/
initialize(root: Node): void;
/**
* The **`upgrade()`** method of the CustomElementRegistry interface upgrades all shadow-containing custom elements in a Node subtree, even before they are connected to the main document.
Expand Down Expand Up @@ -13621,7 +13625,11 @@ interface Element extends Node, ARIAMixin, Animatable, ChildNode, NonDocumentTyp
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/currentCSSZoom)
*/
readonly currentCSSZoom: number;
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/customElementRegistry) */
/**
* The **`customElementRegistry`** read-only property of the Element interface returns the CustomElementRegistry object associated with this element, or null if one has not been set.
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/customElementRegistry)
*/
readonly customElementRegistry: CustomElementRegistry | null;
/**
* The **`id`** property of the Element interface represents the element's identifier, reflecting the id global attribute.
Expand Down Expand Up @@ -19579,7 +19587,7 @@ interface HTMLMediaElement extends HTMLElement {
*/
canPlayType(type: string): CanPlayTypeResult;
/**
* The **`captureStream()`** method of the HTMLMediaElement interface returns a MediaStream object which is streaming a real-time capture of the content being rendered in the media element.
* The **`captureStream()`** method of the HTMLMediaElement interface returns a MediaStream object that streams a real-time capture of the content being rendered in the media element.
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/captureStream)
*/
Expand Down Expand Up @@ -21321,7 +21329,11 @@ interface HTMLTemplateElement extends HTMLElement {
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTemplateElement/shadowRootClonable)
*/
shadowRootClonable: boolean;
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTemplateElement/shadowRootCustomElementRegistry) */
/**
* The **`shadowRootCustomElementRegistry`** property of the HTMLTemplateElement interface reflects the value of the shadowrootcustomelementregistry attribute of the associated <template> element.
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTemplateElement/shadowRootCustomElementRegistry)
*/
shadowRootCustomElementRegistry: string;
/**
* The **`shadowRootDelegatesFocus`** property of the HTMLTemplateElement interface reflects the value of the shadowrootdelegatesfocus attribute of the associated <template> element.
Expand Down
26 changes: 19 additions & 7 deletions baselines/ts5.5/dom.generated.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5373,7 +5373,7 @@ declare var CSSCounterStyleRule: {
*/
interface CSSFontFaceRule extends CSSRule {
/**
* The read-only **`style`** property of the CSSFontFaceRule interface contains a CSSStyleDeclaration object representing the descriptors available in the @font-face rule's body.
* The read-only **`style`** property of the CSSFontFaceRule interface returns a CSSFontFaceDescriptors object representing the descriptors available in the @font-face rule's body.
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSFontFaceRule/style)
*/
Expand Down Expand Up @@ -7379,7 +7379,7 @@ interface CSSStyleProperties extends CSSStyleDeclarationBase {
*/
columnWidth: string;
/**
* The **`columns`** CSS shorthand property sets the number of columns to use when drawing an element's contents, as well as those columns' widths.
* The **`columns`** CSS shorthand property sets the maximum number of columns to use when drawing an element's contents, along with the minimum width and maximum height of the element's columns.
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/columns)
*/
Expand Down Expand Up @@ -11277,7 +11277,7 @@ declare var CryptoKey: {
};

/**
* The **`CustomElementRegistry`** interface provides methods for registering custom elements and querying registered elements. To get an instance of it, use the window.customElements property.
* The **`CustomElementRegistry`** interface provides methods for registering custom elements and querying registered elements. To get an instance of it, use the window.customElements property. To create a scoped registry, use the CustomElementRegistry() constructor.
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CustomElementRegistry)
*/
Expand All @@ -11300,7 +11300,11 @@ interface CustomElementRegistry {
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CustomElementRegistry/getName)
*/
getName(constructor: CustomElementConstructor): string | null;
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CustomElementRegistry/initialize) */
/**
* The **`initialize()`** method of the CustomElementRegistry interface associates this registry with a DOM subtree, setting the customElementRegistry of each inclusive descendant that doesn't already have one, and attempting to upgrade any custom elements found.
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CustomElementRegistry/initialize)
*/
initialize(root: Node): void;
/**
* The **`upgrade()`** method of the CustomElementRegistry interface upgrades all shadow-containing custom elements in a Node subtree, even before they are connected to the main document.
Expand Down Expand Up @@ -13609,7 +13613,11 @@ interface Element extends Node, ARIAMixin, Animatable, ChildNode, NonDocumentTyp
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/currentCSSZoom)
*/
readonly currentCSSZoom: number;
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/customElementRegistry) */
/**
* The **`customElementRegistry`** read-only property of the Element interface returns the CustomElementRegistry object associated with this element, or null if one has not been set.
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/customElementRegistry)
*/
readonly customElementRegistry: CustomElementRegistry | null;
/**
* The **`id`** property of the Element interface represents the element's identifier, reflecting the id global attribute.
Expand Down Expand Up @@ -19558,7 +19566,7 @@ interface HTMLMediaElement extends HTMLElement {
*/
canPlayType(type: string): CanPlayTypeResult;
/**
* The **`captureStream()`** method of the HTMLMediaElement interface returns a MediaStream object which is streaming a real-time capture of the content being rendered in the media element.
* The **`captureStream()`** method of the HTMLMediaElement interface returns a MediaStream object that streams a real-time capture of the content being rendered in the media element.
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/captureStream)
*/
Expand Down Expand Up @@ -21297,7 +21305,11 @@ interface HTMLTemplateElement extends HTMLElement {
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTemplateElement/shadowRootClonable)
*/
shadowRootClonable: boolean;
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTemplateElement/shadowRootCustomElementRegistry) */
/**
* The **`shadowRootCustomElementRegistry`** property of the HTMLTemplateElement interface reflects the value of the shadowrootcustomelementregistry attribute of the associated <template> element.
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTemplateElement/shadowRootCustomElementRegistry)
*/
shadowRootCustomElementRegistry: string;
/**
* The **`shadowRootDelegatesFocus`** property of the HTMLTemplateElement interface reflects the value of the shadowrootdelegatesfocus attribute of the associated <template> element.
Expand Down
26 changes: 19 additions & 7 deletions baselines/ts5.6/dom.generated.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5373,7 +5373,7 @@ declare var CSSCounterStyleRule: {
*/
interface CSSFontFaceRule extends CSSRule {
/**
* The read-only **`style`** property of the CSSFontFaceRule interface contains a CSSStyleDeclaration object representing the descriptors available in the @font-face rule's body.
* The read-only **`style`** property of the CSSFontFaceRule interface returns a CSSFontFaceDescriptors object representing the descriptors available in the @font-face rule's body.
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CSSFontFaceRule/style)
*/
Expand Down Expand Up @@ -7386,7 +7386,7 @@ interface CSSStyleProperties extends CSSStyleDeclarationBase {
*/
columnWidth: string;
/**
* The **`columns`** CSS shorthand property sets the number of columns to use when drawing an element's contents, as well as those columns' widths.
* The **`columns`** CSS shorthand property sets the maximum number of columns to use when drawing an element's contents, along with the minimum width and maximum height of the element's columns.
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/Reference/Properties/columns)
*/
Expand Down Expand Up @@ -11285,7 +11285,7 @@ declare var CryptoKey: {
};

/**
* The **`CustomElementRegistry`** interface provides methods for registering custom elements and querying registered elements. To get an instance of it, use the window.customElements property.
* The **`CustomElementRegistry`** interface provides methods for registering custom elements and querying registered elements. To get an instance of it, use the window.customElements property. To create a scoped registry, use the CustomElementRegistry() constructor.
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CustomElementRegistry)
*/
Expand All @@ -11308,7 +11308,11 @@ interface CustomElementRegistry {
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CustomElementRegistry/getName)
*/
getName(constructor: CustomElementConstructor): string | null;
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CustomElementRegistry/initialize) */
/**
* The **`initialize()`** method of the CustomElementRegistry interface associates this registry with a DOM subtree, setting the customElementRegistry of each inclusive descendant that doesn't already have one, and attempting to upgrade any custom elements found.
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CustomElementRegistry/initialize)
*/
initialize(root: Node): void;
/**
* The **`upgrade()`** method of the CustomElementRegistry interface upgrades all shadow-containing custom elements in a Node subtree, even before they are connected to the main document.
Expand Down Expand Up @@ -13618,7 +13622,11 @@ interface Element extends Node, ARIAMixin, Animatable, ChildNode, NonDocumentTyp
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/currentCSSZoom)
*/
readonly currentCSSZoom: number;
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/customElementRegistry) */
/**
* The **`customElementRegistry`** read-only property of the Element interface returns the CustomElementRegistry object associated with this element, or null if one has not been set.
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/customElementRegistry)
*/
readonly customElementRegistry: CustomElementRegistry | null;
/**
* The **`id`** property of the Element interface represents the element's identifier, reflecting the id global attribute.
Expand Down Expand Up @@ -19576,7 +19584,7 @@ interface HTMLMediaElement extends HTMLElement {
*/
canPlayType(type: string): CanPlayTypeResult;
/**
* The **`captureStream()`** method of the HTMLMediaElement interface returns a MediaStream object which is streaming a real-time capture of the content being rendered in the media element.
* The **`captureStream()`** method of the HTMLMediaElement interface returns a MediaStream object that streams a real-time capture of the content being rendered in the media element.
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLMediaElement/captureStream)
*/
Expand Down Expand Up @@ -21318,7 +21326,11 @@ interface HTMLTemplateElement extends HTMLElement {
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTemplateElement/shadowRootClonable)
*/
shadowRootClonable: boolean;
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTemplateElement/shadowRootCustomElementRegistry) */
/**
* The **`shadowRootCustomElementRegistry`** property of the HTMLTemplateElement interface reflects the value of the shadowrootcustomelementregistry attribute of the associated <template> element.
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLTemplateElement/shadowRootCustomElementRegistry)
*/
shadowRootCustomElementRegistry: string;
/**
* The **`shadowRootDelegatesFocus`** property of the HTMLTemplateElement interface reflects the value of the shadowrootdelegatesfocus attribute of the associated <template> element.
Expand Down
Loading