diff --git a/source b/source index 213f90acbef..484e0b247d6 100644 --- a/source +++ b/source @@ -61905,15 +61905,6 @@ interface HTMLDialogElement : HTMLElement {
Add an open
attribute to this, whose
value is the empty string.
Assert: this's node document's open - dialogs list does not contain - this.
Add this to this's node document's open - dialogs list.
Set the dialog close watcher with this.
Set this's previously focused element to the focused element.
The following attribute change
+ steps, given element, localName, oldValue,
+ value, and namespace are used for dialog
elements:
If namespace is not null, then return.
If localName is not open
, then
+ return.
If value is null and oldValue is not null:
+ +Assert: element's node document's open + dialogs list contains element.
Remove element from element's + node document's open dialogs list.
If element's close watcher is not + null, then:
+ +Destroy element's close watcher.
Set element's close watcher to + null.
If value is not null and oldValue is null:
+ +Assert: element's node document's open + dialogs list does not contain + element.
Add element to this's node document's open + dialogs list.
Set the dialog close watcher with element.
To show a modal dialog given a dialog
element subject:
Set is modal of subject to true.
Assert: subject's node document's open - dialogs list does not contain - subject.
Add subject to subject's node document's open - dialogs list.
Let subject's node document be blocked by the modal dialog subject.
@@ -62150,8 +62183,6 @@ interface HTMLDialogElement : HTMLElement { already contain subject, then add an element to the top layer given subject.Set the dialog close watcher with subject.
Set subject's previously focused element to the focused element.
If dialog's close watcher is not + null, then return.
Set dialog's close watcher to the result of establishing a close watcher given @@ -62234,9 +62268,6 @@ interface HTMLDialogElement : HTMLElement {
Set is modal of subject to false.
Remove subject from subject's - node document's open dialogs list.
If result is not null, then set the returnValue
attribute to result.
Queue an element task on the user interaction task source given the
subject element to fire an event named
close
at subject.
If subject's close watcher is not null, - then:
- -Destroy subject's close watcher.
Set subject's close watcher to - null.