From 9cb654bdcd3e4dd6d231bcebc511c19269adbe3f Mon Sep 17 00:00:00 2001 From: Keith Cirkel Date: Fri, 31 Jan 2025 11:45:39 +0000 Subject: [PATCH] Editorial: group and rearrange dialog concepts Part of #10963. --- source | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/source b/source index 6e3266974ed..701285ddb55 100644 --- a/source +++ b/source @@ -61876,9 +61876,6 @@ interface HTMLDialogElement : HTMLElement {
-

Every dialog element has a dialog toggle task tracker, which is a - toggle task tracker or null, initially null.

-

To queue a dialog toggle event task given a dialog element element, a string oldState, and a string newState: @@ -62351,9 +62348,20 @@ interface HTMLDialogElement : HTMLElement {


-

The Document has a dialog pointerdown target, which is an Each Document has a dialog pointerdown target, which is an HTML dialog element or null, initially null.

+

Each HTML element has a previously focused + element which is null or an element, and it is initially null. When showModal() and show() + are called, this element is set to the currently focused element before running the + dialog focusing steps. Elements with the popover + attribute set this element to the currently focused element during the show popover algorithm.

+ +

Each dialog element has a dialog toggle task tracker, which is a + toggle task tracker or null, initially null.

+

Each dialog element has a close watcher, which is a close watcher or null, initially null.

@@ -62365,14 +62373,6 @@ interface HTMLDialogElement : HTMLElement {

Each dialog element has an is modal boolean, initially false.

-

Each HTML element has a previously focused - element which is null or an element, and it is initially null. When showModal() and show() - are called, this element is set to the currently focused element before running the - dialog focusing steps. Elements with the popover - attribute set this element to the currently focused element during the show popover algorithm.

-