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
8 changes: 4 additions & 4 deletions baselines/dom.generated.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16853,13 +16853,13 @@ interface HTMLDialogElement extends HTMLElement {
*/
requestClose(returnValue?: string): void;
/**
* The **`show()`** method of the HTMLDialogElement interface displays the dialog modelessly, i.e., still allowing interaction with content outside of the dialog.
* The **`show()`** method of the HTMLDialogElement interface displays the dialog as a non-modal dialog.
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLDialogElement/show)
*/
show(): void;
/**
* The **`showModal()`** method of the HTMLDialogElement interface displays the dialog as a modal, over the top of any other dialogs that might be present. It displays in the top layer, along with a ::backdrop pseudo-element. Elements inside the same document as the dialog, except the dialog and its descendants, become inert (as if the inert attribute is specified). Only the containing document becomes blocked; if the dialog is rendered inside an iframe, the rest of the page remains interactive.
* The **`showModal()`** method of the HTMLDialogElement interface displays the dialog as a modal dialog, over the top of any other dialogs or elements that might be visible.
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLDialogElement/showModal)
*/
Expand Down Expand Up @@ -24271,13 +24271,13 @@ interface MouseEvent extends UIEvent {
*/
readonly metaKey: boolean;
/**
* The **`movementX`** read-only property of the MouseEvent interface provides the difference in the X coordinate of the mouse pointer between the given event and the previous mousemove event. In other words, the value of the property is computed like this: currentEvent.movementX = currentEvent.screenX - previousEvent.screenX.
* The **`movementX`** read-only property of the MouseEvent interface provides the difference in the X coordinate of the mouse (or pointer) between the given move event and the previous move event of the same type.
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/MouseEvent/movementX)
*/
readonly movementX: number;
/**
* The **`movementY`** read-only property of the MouseEvent interface provides the difference in the Y coordinate of the mouse pointer between the given event and the previous mousemove event. In other words, the value of the property is computed like this: currentEvent.movementY = currentEvent.screenY - previousEvent.screenY.
* The **`movementY`** read-only property of the MouseEvent interface provides the difference in the Y coordinate of the mouse (or pointer) between the given move event and the previous move event of the same type.
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/MouseEvent/movementY)
*/
Expand Down
8 changes: 4 additions & 4 deletions baselines/ts5.5/dom.generated.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16837,13 +16837,13 @@ interface HTMLDialogElement extends HTMLElement {
*/
requestClose(returnValue?: string): void;
/**
* The **`show()`** method of the HTMLDialogElement interface displays the dialog modelessly, i.e., still allowing interaction with content outside of the dialog.
* The **`show()`** method of the HTMLDialogElement interface displays the dialog as a non-modal dialog.
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLDialogElement/show)
*/
show(): void;
/**
* The **`showModal()`** method of the HTMLDialogElement interface displays the dialog as a modal, over the top of any other dialogs that might be present. It displays in the top layer, along with a ::backdrop pseudo-element. Elements inside the same document as the dialog, except the dialog and its descendants, become inert (as if the inert attribute is specified). Only the containing document becomes blocked; if the dialog is rendered inside an iframe, the rest of the page remains interactive.
* The **`showModal()`** method of the HTMLDialogElement interface displays the dialog as a modal dialog, over the top of any other dialogs or elements that might be visible.
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLDialogElement/showModal)
*/
Expand Down Expand Up @@ -24247,13 +24247,13 @@ interface MouseEvent extends UIEvent {
*/
readonly metaKey: boolean;
/**
* The **`movementX`** read-only property of the MouseEvent interface provides the difference in the X coordinate of the mouse pointer between the given event and the previous mousemove event. In other words, the value of the property is computed like this: currentEvent.movementX = currentEvent.screenX - previousEvent.screenX.
* The **`movementX`** read-only property of the MouseEvent interface provides the difference in the X coordinate of the mouse (or pointer) between the given move event and the previous move event of the same type.
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/MouseEvent/movementX)
*/
readonly movementX: number;
/**
* The **`movementY`** read-only property of the MouseEvent interface provides the difference in the Y coordinate of the mouse pointer between the given event and the previous mousemove event. In other words, the value of the property is computed like this: currentEvent.movementY = currentEvent.screenY - previousEvent.screenY.
* The **`movementY`** read-only property of the MouseEvent interface provides the difference in the Y coordinate of the mouse (or pointer) between the given move event and the previous move event of the same type.
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/MouseEvent/movementY)
*/
Expand Down
8 changes: 4 additions & 4 deletions baselines/ts5.6/dom.generated.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16850,13 +16850,13 @@ interface HTMLDialogElement extends HTMLElement {
*/
requestClose(returnValue?: string): void;
/**
* The **`show()`** method of the HTMLDialogElement interface displays the dialog modelessly, i.e., still allowing interaction with content outside of the dialog.
* The **`show()`** method of the HTMLDialogElement interface displays the dialog as a non-modal dialog.
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLDialogElement/show)
*/
show(): void;
/**
* The **`showModal()`** method of the HTMLDialogElement interface displays the dialog as a modal, over the top of any other dialogs that might be present. It displays in the top layer, along with a ::backdrop pseudo-element. Elements inside the same document as the dialog, except the dialog and its descendants, become inert (as if the inert attribute is specified). Only the containing document becomes blocked; if the dialog is rendered inside an iframe, the rest of the page remains interactive.
* The **`showModal()`** method of the HTMLDialogElement interface displays the dialog as a modal dialog, over the top of any other dialogs or elements that might be visible.
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLDialogElement/showModal)
*/
Expand Down Expand Up @@ -24268,13 +24268,13 @@ interface MouseEvent extends UIEvent {
*/
readonly metaKey: boolean;
/**
* The **`movementX`** read-only property of the MouseEvent interface provides the difference in the X coordinate of the mouse pointer between the given event and the previous mousemove event. In other words, the value of the property is computed like this: currentEvent.movementX = currentEvent.screenX - previousEvent.screenX.
* The **`movementX`** read-only property of the MouseEvent interface provides the difference in the X coordinate of the mouse (or pointer) between the given move event and the previous move event of the same type.
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/MouseEvent/movementX)
*/
readonly movementX: number;
/**
* The **`movementY`** read-only property of the MouseEvent interface provides the difference in the Y coordinate of the mouse pointer between the given event and the previous mousemove event. In other words, the value of the property is computed like this: currentEvent.movementY = currentEvent.screenY - previousEvent.screenY.
* The **`movementY`** read-only property of the MouseEvent interface provides the difference in the Y coordinate of the mouse (or pointer) between the given move event and the previous move event of the same type.
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/MouseEvent/movementY)
*/
Expand Down
8 changes: 4 additions & 4 deletions baselines/ts5.9/dom.generated.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16850,13 +16850,13 @@ interface HTMLDialogElement extends HTMLElement {
*/
requestClose(returnValue?: string): void;
/**
* The **`show()`** method of the HTMLDialogElement interface displays the dialog modelessly, i.e., still allowing interaction with content outside of the dialog.
* The **`show()`** method of the HTMLDialogElement interface displays the dialog as a non-modal dialog.
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLDialogElement/show)
*/
show(): void;
/**
* The **`showModal()`** method of the HTMLDialogElement interface displays the dialog as a modal, over the top of any other dialogs that might be present. It displays in the top layer, along with a ::backdrop pseudo-element. Elements inside the same document as the dialog, except the dialog and its descendants, become inert (as if the inert attribute is specified). Only the containing document becomes blocked; if the dialog is rendered inside an iframe, the rest of the page remains interactive.
* The **`showModal()`** method of the HTMLDialogElement interface displays the dialog as a modal dialog, over the top of any other dialogs or elements that might be visible.
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLDialogElement/showModal)
*/
Expand Down Expand Up @@ -24268,13 +24268,13 @@ interface MouseEvent extends UIEvent {
*/
readonly metaKey: boolean;
/**
* The **`movementX`** read-only property of the MouseEvent interface provides the difference in the X coordinate of the mouse pointer between the given event and the previous mousemove event. In other words, the value of the property is computed like this: currentEvent.movementX = currentEvent.screenX - previousEvent.screenX.
* The **`movementX`** read-only property of the MouseEvent interface provides the difference in the X coordinate of the mouse (or pointer) between the given move event and the previous move event of the same type.
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/MouseEvent/movementX)
*/
readonly movementX: number;
/**
* The **`movementY`** read-only property of the MouseEvent interface provides the difference in the Y coordinate of the mouse pointer between the given event and the previous mousemove event. In other words, the value of the property is computed like this: currentEvent.movementY = currentEvent.screenY - previousEvent.screenY.
* The **`movementY`** read-only property of the MouseEvent interface provides the difference in the Y coordinate of the mouse (or pointer) between the given move event and the previous move event of the same type.
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/MouseEvent/movementY)
*/
Expand Down
18 changes: 9 additions & 9 deletions inputfiles/mdn.json
Original file line number Diff line number Diff line change
Expand Up @@ -12622,7 +12622,7 @@
{
"mdn_url": "/en-US/docs/Web/API/HTMLDialogElement/cancel_event",
"pageType": "web-api-event",
"summary": "The cancel event fires on a <dialog> element when the user instructs the browser that they wish to dismiss the current open dialog. The browser fires this event when the user presses the Esc key."
"summary": "The cancel event fires on a <dialog> element when the user triggers a close request."
},
{
"mdn_url": "/en-US/docs/Web/API/HTMLDialogElement/close",
Expand Down Expand Up @@ -12657,12 +12657,12 @@
{
"mdn_url": "/en-US/docs/Web/API/HTMLDialogElement/show",
"pageType": "web-api-instance-method",
"summary": "The show() method of the HTMLDialogElement interface displays the dialog modelessly, i.e., still allowing interaction with content outside of the dialog."
"summary": "The show() method of the HTMLDialogElement interface displays the dialog as a non-modal dialog."
},
{
"mdn_url": "/en-US/docs/Web/API/HTMLDialogElement/showModal",
"pageType": "web-api-instance-method",
"summary": "The showModal() method of the\nHTMLDialogElement interface displays the dialog as a modal, over the top\nof any other dialogs that might be present. It displays in the top layer, along with a\n::backdrop pseudo-element. Elements inside the same document as the dialog, except the dialog and its descendants, become inert (as if the inert attribute is specified). Only the containing document becomes blocked; if the dialog is rendered inside an iframe, the rest of the page remains interactive."
"summary": "The showModal() method of the HTMLDialogElement interface displays the dialog as a modal dialog, over the top of any other dialogs or elements that might be visible."
},
{
"mdn_url": "/en-US/docs/Web/API/HTMLDivElement",
Expand Down Expand Up @@ -19047,12 +19047,12 @@
{
"mdn_url": "/en-US/docs/Web/API/MouseEvent/movementX",
"pageType": "web-api-instance-property",
"summary": "The movementX read-only property of the MouseEvent interface provides the difference in the X coordinate of the mouse pointer between the given event and the previous mousemove event.\nIn other words, the value of the property is computed like this: currentEvent.movementX = currentEvent.screenX - previousEvent.screenX."
"summary": "The movementX read-only property of the MouseEvent interface provides the difference in the X coordinate of the mouse (or pointer) between the given move event and the previous move event of the same type."
},
{
"mdn_url": "/en-US/docs/Web/API/MouseEvent/movementY",
"pageType": "web-api-instance-property",
"summary": "The movementY read-only property of the MouseEvent interface provides the difference in the Y coordinate of the mouse pointer between the given event and the previous mousemove event.\nIn other words, the value of the property is computed like this: currentEvent.movementY = currentEvent.screenY - previousEvent.screenY."
"summary": "The movementY read-only property of the MouseEvent interface provides the difference in the Y coordinate of the mouse (or pointer) between the given move event and the previous move event of the same type."
},
{
"mdn_url": "/en-US/docs/Web/API/MouseEvent/mozInputSource",
Expand Down Expand Up @@ -19697,7 +19697,7 @@
{
"mdn_url": "/en-US/docs/Web/API/Navigator/deviceMemory",
"pageType": "web-api-instance-property",
"summary": "The deviceMemory read-only\nproperty of the Navigator interface returns the approximate amount of\ndevice memory in gigabytes."
"summary": "The deviceMemory read-only property of the Navigator interface returns the approximate amount of device memory in gigabytes."
},
{
"mdn_url": "/en-US/docs/Web/API/Navigator/devicePosture",
Expand Down Expand Up @@ -20012,7 +20012,7 @@
{
"mdn_url": "/en-US/docs/Web/API/NavigatorUAData/getHighEntropyValues",
"pageType": "web-api-instance-method",
"summary": "The getHighEntropyValues() method of the NavigatorUAData interface is a Promise that resolves with a dictionary object containing the high entropy values the user-agent returns."
"summary": "The getHighEntropyValues() method of the NavigatorUAData interface returns a Promise that resolves with a dictionary object containing low entropy information and requested high entropy information about the browser."
},
{
"mdn_url": "/en-US/docs/Web/API/NavigatorUAData/mobile",
Expand Down Expand Up @@ -21137,7 +21137,7 @@
{
"mdn_url": "/en-US/docs/Web/API/Path2D/Path2D",
"pageType": "web-api-constructor",
"summary": "The Path2D() constructor returns a newly instantiated\nPath2D object, optionally with another path as an argument (creates a\ncopy), or optionally with a string consisting of SVG path data."
"summary": "The Path2D() constructor returns a newly instantiated Path2D object, optionally with another path as an argument (creates a copy), or optionally with a string consisting of SVG path data."
},
{
"mdn_url": "/en-US/docs/Web/API/Payment_Handler_API",
Expand Down Expand Up @@ -37567,7 +37567,7 @@
{
"mdn_url": "/en-US/docs/Web/API/WorkerNavigator/deviceMemory",
"pageType": "web-api-instance-property",
"summary": "The deviceMemory read-only\nproperty of the WorkerNavigator interface returns the approximate amount of\ndevice memory in gigabytes."
"summary": "The deviceMemory read-only property of the WorkerNavigator interface returns the approximate amount of device memory in gigabytes."
},
{
"mdn_url": "/en-US/docs/Web/API/WorkerNavigator/globalPrivacyControl",
Expand Down
18 changes: 9 additions & 9 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.