Skip to content

Commit cad1aa8

Browse files
committed
-
1 parent 2d928d3 commit cad1aa8

File tree

5 files changed

+5
-9
lines changed

5 files changed

+5
-9
lines changed

baselines/dom.generated.d.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17154,7 +17154,6 @@ declare var HTMLImageElement: {
1715417154
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement)
1715517155
*/
1715617156
interface HTMLInputElement extends HTMLElement, PopoverTargetAttributes {
17157-
SelectionDirection: SelectionDirection;
1715817157
/**
1715917158
* The **`accept`** property of the HTMLInputElement interface reflects the <input> element's accept attribute, generally a comma-separated list of unique file type specifiers providing a hint for the expected file type for an <input> of type file. If the attribute is not explicitly set, the accept property is an empty string.
1716017159
*
@@ -17342,7 +17341,7 @@ interface HTMLInputElement extends HTMLElement, PopoverTargetAttributes {
1734217341
*
1734317342
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/selectionDirection)
1734417343
*/
17345-
selectionDirection: string | null;
17344+
selectionDirection: SelectionDirection | null;
1734617345
/**
1734717346
* The **`selectionEnd`** property of the HTMLInputElement interface is a number that represents the end index of the selected text. That is, it represents the index of the character immediately following the selection. Likewise, when there is no selection, this returns the offset of the character immediately following the current text input cursor position.
1734817347
*

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

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17136,7 +17136,6 @@ declare var HTMLImageElement: {
1713617136
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement)
1713717137
*/
1713817138
interface HTMLInputElement extends HTMLElement, PopoverTargetAttributes {
17139-
SelectionDirection: SelectionDirection;
1714017139
/**
1714117140
* The **`accept`** property of the HTMLInputElement interface reflects the <input> element's accept attribute, generally a comma-separated list of unique file type specifiers providing a hint for the expected file type for an <input> of type file. If the attribute is not explicitly set, the accept property is an empty string.
1714217141
*
@@ -17324,7 +17323,7 @@ interface HTMLInputElement extends HTMLElement, PopoverTargetAttributes {
1732417323
*
1732517324
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/selectionDirection)
1732617325
*/
17327-
selectionDirection: string | null;
17326+
selectionDirection: SelectionDirection | null;
1732817327
/**
1732917328
* The **`selectionEnd`** property of the HTMLInputElement interface is a number that represents the end index of the selected text. That is, it represents the index of the character immediately following the selection. Likewise, when there is no selection, this returns the offset of the character immediately following the current text input cursor position.
1733017329
*

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

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17151,7 +17151,6 @@ declare var HTMLImageElement: {
1715117151
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement)
1715217152
*/
1715317153
interface HTMLInputElement extends HTMLElement, PopoverTargetAttributes {
17154-
SelectionDirection: SelectionDirection;
1715517154
/**
1715617155
* The **`accept`** property of the HTMLInputElement interface reflects the <input> element's accept attribute, generally a comma-separated list of unique file type specifiers providing a hint for the expected file type for an <input> of type file. If the attribute is not explicitly set, the accept property is an empty string.
1715717156
*
@@ -17339,7 +17338,7 @@ interface HTMLInputElement extends HTMLElement, PopoverTargetAttributes {
1733917338
*
1734017339
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/selectionDirection)
1734117340
*/
17342-
selectionDirection: string | null;
17341+
selectionDirection: SelectionDirection | null;
1734317342
/**
1734417343
* The **`selectionEnd`** property of the HTMLInputElement interface is a number that represents the end index of the selected text. That is, it represents the index of the character immediately following the selection. Likewise, when there is no selection, this returns the offset of the character immediately following the current text input cursor position.
1734517344
*

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

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17151,7 +17151,6 @@ declare var HTMLImageElement: {
1715117151
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement)
1715217152
*/
1715317153
interface HTMLInputElement extends HTMLElement, PopoverTargetAttributes {
17154-
SelectionDirection: SelectionDirection;
1715517154
/**
1715617155
* The **`accept`** property of the HTMLInputElement interface reflects the <input> element's accept attribute, generally a comma-separated list of unique file type specifiers providing a hint for the expected file type for an <input> of type file. If the attribute is not explicitly set, the accept property is an empty string.
1715717156
*
@@ -17339,7 +17338,7 @@ interface HTMLInputElement extends HTMLElement, PopoverTargetAttributes {
1733917338
*
1734017339
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLInputElement/selectionDirection)
1734117340
*/
17342-
selectionDirection: string | null;
17341+
selectionDirection: SelectionDirection | null;
1734317342
/**
1734417343
* The **`selectionEnd`** property of the HTMLInputElement interface is a number that represents the end index of the selected text. That is, it represents the index of the character immediately following the selection. Likewise, when there is no selection, this returns the offset of the character immediately following the current text input cursor position.
1734517344
*

inputfiles/patches/html.kdl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ interface HTMLInputElement {
5555
}
5656
property autocomplete type=AutoFill
5757
property valueAsDate type=Date
58-
property SelectionDirection type=SelectionDirection
58+
property selectionDirection type=SelectionDirection
5959
method setSelectionRange signatureIndex=0 {
6060
param start nullable=#true
6161
param end nullable=#true

0 commit comments

Comments
 (0)