diff --git a/baselines/dom.generated.d.ts b/baselines/dom.generated.d.ts index 57dbb84ea..4fa1cc0c8 100644 --- a/baselines/dom.generated.d.ts +++ b/baselines/dom.generated.d.ts @@ -29014,7 +29014,7 @@ declare var SVGPatternElement: { }; /** - * The **`SVGPointList`** interface represents a list of SVGPoint objects. + * The **`SVGPointList`** interface represents a list of DOMPoint objects. * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGPointList) */ @@ -29032,7 +29032,7 @@ interface SVGPointList { */ readonly numberOfItems: number; /** - * The **`appendItem()`** method of the SVGPointList interface adds a SVGPoint to the end of the list. + * The **`appendItem()`** method of the SVGPointList interface adds a DOMPoint to the end of the list. * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGPointList/appendItem) */ @@ -29050,25 +29050,25 @@ interface SVGPointList { */ getItem(index: number): DOMPoint; /** - * The **`initialize()`** method of the SVGPointList interface clears the list then adds a single new SVGPoint object to the list. + * The **`initialize()`** method of the SVGPointList interface clears the list then adds a single new DOMPoint object to the list. * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGPointList/initialize) */ initialize(newItem: DOMPoint): DOMPoint; /** - * The **`insertItemBefore()`** method of the SVGPointList interface inserts a SVGPoint before another item in the list. + * The **`insertItemBefore()`** method of the SVGPointList interface inserts a DOMPoint before another item in the list. * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGPointList/insertItemBefore) */ insertItemBefore(newItem: DOMPoint, index: number): DOMPoint; /** - * The **`removeItem()`** method of the SVGPointList interface removes a SVGPoint from the list. + * The **`removeItem()`** method of the SVGPointList interface removes a DOMPoint from the list. * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGPointList/removeItem) */ removeItem(index: number): DOMPoint; /** - * The **`replaceItem()`** method of the SVGPointList interface replaces a SVGPoint in the list. + * The **`replaceItem()`** method of the SVGPointList interface replaces a DOMPoint in the list. * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGPointList/replaceItem) */ @@ -29362,7 +29362,7 @@ interface SVGSVGElement extends SVGGraphicsElement, SVGFitToViewBox, WindowEvent */ createSVGNumber(): SVGNumber; /** - * The `createSVGPoint()` method of the SVGSVGElement interface creates an SVGPoint object outside of any document trees. + * The `createSVGPoint()` method of the SVGSVGElement interface creates a DOMPoint object outside of any document trees. * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGSVGElement/createSVGPoint) */ diff --git a/baselines/ts5.5/dom.generated.d.ts b/baselines/ts5.5/dom.generated.d.ts index b083b9a41..24413abd1 100644 --- a/baselines/ts5.5/dom.generated.d.ts +++ b/baselines/ts5.5/dom.generated.d.ts @@ -28993,7 +28993,7 @@ declare var SVGPatternElement: { }; /** - * The **`SVGPointList`** interface represents a list of SVGPoint objects. + * The **`SVGPointList`** interface represents a list of DOMPoint objects. * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGPointList) */ @@ -29011,7 +29011,7 @@ interface SVGPointList { */ readonly numberOfItems: number; /** - * The **`appendItem()`** method of the SVGPointList interface adds a SVGPoint to the end of the list. + * The **`appendItem()`** method of the SVGPointList interface adds a DOMPoint to the end of the list. * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGPointList/appendItem) */ @@ -29029,25 +29029,25 @@ interface SVGPointList { */ getItem(index: number): DOMPoint; /** - * The **`initialize()`** method of the SVGPointList interface clears the list then adds a single new SVGPoint object to the list. + * The **`initialize()`** method of the SVGPointList interface clears the list then adds a single new DOMPoint object to the list. * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGPointList/initialize) */ initialize(newItem: DOMPoint): DOMPoint; /** - * The **`insertItemBefore()`** method of the SVGPointList interface inserts a SVGPoint before another item in the list. + * The **`insertItemBefore()`** method of the SVGPointList interface inserts a DOMPoint before another item in the list. * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGPointList/insertItemBefore) */ insertItemBefore(newItem: DOMPoint, index: number): DOMPoint; /** - * The **`removeItem()`** method of the SVGPointList interface removes a SVGPoint from the list. + * The **`removeItem()`** method of the SVGPointList interface removes a DOMPoint from the list. * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGPointList/removeItem) */ removeItem(index: number): DOMPoint; /** - * The **`replaceItem()`** method of the SVGPointList interface replaces a SVGPoint in the list. + * The **`replaceItem()`** method of the SVGPointList interface replaces a DOMPoint in the list. * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGPointList/replaceItem) */ @@ -29341,7 +29341,7 @@ interface SVGSVGElement extends SVGGraphicsElement, SVGFitToViewBox, WindowEvent */ createSVGNumber(): SVGNumber; /** - * The `createSVGPoint()` method of the SVGSVGElement interface creates an SVGPoint object outside of any document trees. + * The `createSVGPoint()` method of the SVGSVGElement interface creates a DOMPoint object outside of any document trees. * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGSVGElement/createSVGPoint) */ diff --git a/baselines/ts5.6/dom.generated.d.ts b/baselines/ts5.6/dom.generated.d.ts index 6d4500983..749cb2fec 100644 --- a/baselines/ts5.6/dom.generated.d.ts +++ b/baselines/ts5.6/dom.generated.d.ts @@ -29014,7 +29014,7 @@ declare var SVGPatternElement: { }; /** - * The **`SVGPointList`** interface represents a list of SVGPoint objects. + * The **`SVGPointList`** interface represents a list of DOMPoint objects. * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGPointList) */ @@ -29032,7 +29032,7 @@ interface SVGPointList { */ readonly numberOfItems: number; /** - * The **`appendItem()`** method of the SVGPointList interface adds a SVGPoint to the end of the list. + * The **`appendItem()`** method of the SVGPointList interface adds a DOMPoint to the end of the list. * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGPointList/appendItem) */ @@ -29050,25 +29050,25 @@ interface SVGPointList { */ getItem(index: number): DOMPoint; /** - * The **`initialize()`** method of the SVGPointList interface clears the list then adds a single new SVGPoint object to the list. + * The **`initialize()`** method of the SVGPointList interface clears the list then adds a single new DOMPoint object to the list. * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGPointList/initialize) */ initialize(newItem: DOMPoint): DOMPoint; /** - * The **`insertItemBefore()`** method of the SVGPointList interface inserts a SVGPoint before another item in the list. + * The **`insertItemBefore()`** method of the SVGPointList interface inserts a DOMPoint before another item in the list. * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGPointList/insertItemBefore) */ insertItemBefore(newItem: DOMPoint, index: number): DOMPoint; /** - * The **`removeItem()`** method of the SVGPointList interface removes a SVGPoint from the list. + * The **`removeItem()`** method of the SVGPointList interface removes a DOMPoint from the list. * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGPointList/removeItem) */ removeItem(index: number): DOMPoint; /** - * The **`replaceItem()`** method of the SVGPointList interface replaces a SVGPoint in the list. + * The **`replaceItem()`** method of the SVGPointList interface replaces a DOMPoint in the list. * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGPointList/replaceItem) */ @@ -29362,7 +29362,7 @@ interface SVGSVGElement extends SVGGraphicsElement, SVGFitToViewBox, WindowEvent */ createSVGNumber(): SVGNumber; /** - * The `createSVGPoint()` method of the SVGSVGElement interface creates an SVGPoint object outside of any document trees. + * The `createSVGPoint()` method of the SVGSVGElement interface creates a DOMPoint object outside of any document trees. * * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGSVGElement/createSVGPoint) */ diff --git a/inputfiles/mdn b/inputfiles/mdn index a06a27b6f..7e52ccf87 160000 --- a/inputfiles/mdn +++ b/inputfiles/mdn @@ -1 +1 @@ -Subproject commit a06a27b6f8eea66b66d848517aab0815a170c7cc +Subproject commit 7e52ccf8751ee9f4b3dd4a466979418af48c1fbe