Skip to content

Commit 5d63f3f

Browse files
ortagithub-actions[bot]
authored andcommitted
🤖 Update core dependencies
1 parent ce4a7f9 commit 5d63f3f

File tree

5 files changed

+13
-13
lines changed

5 files changed

+13
-13
lines changed

baselines/dom.generated.d.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10375,7 +10375,7 @@ declare var Document: {
1037510375
prototype: Document;
1037610376
new(): Document;
1037710377
/**
10378-
* The **`parseHTMLUnsafe()`** static method of the Document object is used to parse a string of HTML, which may contain declarative shadow roots, in order to create a new Document instance.
10378+
* The **`parseHTMLUnsafe()`** static method of the Document object is used to parse an HTML input, optionally filtering unwanted HTML elements and attributes, in order to create a new Document instance.
1037910379
*
1038010380
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/parseHTMLUnsafe_static)
1038110381
*/
@@ -11044,7 +11044,7 @@ interface Element extends Node, ARIAMixin, Animatable, ChildNode, NonDocumentTyp
1104411044
*/
1104511045
setAttributeNodeNS(attr: Attr): Attr | null;
1104611046
/**
11047-
* The **`setHTMLUnsafe()`** method of the Element interface is used to parse a string of HTML into a DocumentFragment, which then replaces the element's subtree in the DOM.
11047+
* The **`setHTMLUnsafe()`** method of the Element interface is used to parse a string of HTML into a DocumentFragment, optionally filtering out unwanted elements and attributes, and those that don't belong in the context, and then using it to replace the element's subtree in the DOM.
1104811048
*
1104911049
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/setHTMLUnsafe)
1105011050
*/
@@ -30748,7 +30748,7 @@ interface ShadowRoot extends DocumentFragment, DocumentOrShadowRoot {
3074830748
*/
3074930749
getHTML(options?: GetHTMLOptions): string;
3075030750
/**
30751-
* The **`setHTMLUnsafe()`** method of the ShadowRoot interface is used to parse a string of HTML into a DocumentFragment, which then replaces the element's subtree in the DOM.
30751+
* The **`setHTMLUnsafe()`** method of the ShadowRoot interface can be used to parse a string of HTML into a DocumentFragment, optionally filtering out unwanted elements and attributes, and then use it to replace the existing tree in the Shadow DOM.
3075230752
*
3075330753
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/ShadowRoot/setHTMLUnsafe)
3075430754
*/

baselines/ts5.5/dom.generated.d.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10368,7 +10368,7 @@ declare var Document: {
1036810368
prototype: Document;
1036910369
new(): Document;
1037010370
/**
10371-
* The **`parseHTMLUnsafe()`** static method of the Document object is used to parse a string of HTML, which may contain declarative shadow roots, in order to create a new Document instance.
10371+
* The **`parseHTMLUnsafe()`** static method of the Document object is used to parse an HTML input, optionally filtering unwanted HTML elements and attributes, in order to create a new Document instance.
1037210372
*
1037310373
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/parseHTMLUnsafe_static)
1037410374
*/
@@ -11035,7 +11035,7 @@ interface Element extends Node, ARIAMixin, Animatable, ChildNode, NonDocumentTyp
1103511035
*/
1103611036
setAttributeNodeNS(attr: Attr): Attr | null;
1103711037
/**
11038-
* The **`setHTMLUnsafe()`** method of the Element interface is used to parse a string of HTML into a DocumentFragment, which then replaces the element's subtree in the DOM.
11038+
* The **`setHTMLUnsafe()`** method of the Element interface is used to parse a string of HTML into a DocumentFragment, optionally filtering out unwanted elements and attributes, and those that don't belong in the context, and then using it to replace the element's subtree in the DOM.
1103911039
*
1104011040
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/setHTMLUnsafe)
1104111041
*/
@@ -30727,7 +30727,7 @@ interface ShadowRoot extends DocumentFragment, DocumentOrShadowRoot {
3072730727
*/
3072830728
getHTML(options?: GetHTMLOptions): string;
3072930729
/**
30730-
* The **`setHTMLUnsafe()`** method of the ShadowRoot interface is used to parse a string of HTML into a DocumentFragment, which then replaces the element's subtree in the DOM.
30730+
* The **`setHTMLUnsafe()`** method of the ShadowRoot interface can be used to parse a string of HTML into a DocumentFragment, optionally filtering out unwanted elements and attributes, and then use it to replace the existing tree in the Shadow DOM.
3073130731
*
3073230732
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/ShadowRoot/setHTMLUnsafe)
3073330733
*/

baselines/ts5.6/dom.generated.d.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10375,7 +10375,7 @@ declare var Document: {
1037510375
prototype: Document;
1037610376
new(): Document;
1037710377
/**
10378-
* The **`parseHTMLUnsafe()`** static method of the Document object is used to parse a string of HTML, which may contain declarative shadow roots, in order to create a new Document instance.
10378+
* The **`parseHTMLUnsafe()`** static method of the Document object is used to parse an HTML input, optionally filtering unwanted HTML elements and attributes, in order to create a new Document instance.
1037910379
*
1038010380
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/parseHTMLUnsafe_static)
1038110381
*/
@@ -11044,7 +11044,7 @@ interface Element extends Node, ARIAMixin, Animatable, ChildNode, NonDocumentTyp
1104411044
*/
1104511045
setAttributeNodeNS(attr: Attr): Attr | null;
1104611046
/**
11047-
* The **`setHTMLUnsafe()`** method of the Element interface is used to parse a string of HTML into a DocumentFragment, which then replaces the element's subtree in the DOM.
11047+
* The **`setHTMLUnsafe()`** method of the Element interface is used to parse a string of HTML into a DocumentFragment, optionally filtering out unwanted elements and attributes, and those that don't belong in the context, and then using it to replace the element's subtree in the DOM.
1104811048
*
1104911049
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/setHTMLUnsafe)
1105011050
*/
@@ -30748,7 +30748,7 @@ interface ShadowRoot extends DocumentFragment, DocumentOrShadowRoot {
3074830748
*/
3074930749
getHTML(options?: GetHTMLOptions): string;
3075030750
/**
30751-
* The **`setHTMLUnsafe()`** method of the ShadowRoot interface is used to parse a string of HTML into a DocumentFragment, which then replaces the element's subtree in the DOM.
30751+
* The **`setHTMLUnsafe()`** method of the ShadowRoot interface can be used to parse a string of HTML into a DocumentFragment, optionally filtering out unwanted elements and attributes, and then use it to replace the existing tree in the Shadow DOM.
3075230752
*
3075330753
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/ShadowRoot/setHTMLUnsafe)
3075430754
*/

inputfiles/mdn

Submodule mdn updated 318 files

package-lock.json

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)