LibWeb: Update spec comments for dialog, popover and close watcher

This commit is contained in:
Luke Warlow 2025-01-24 12:44:17 +00:00 committed by Tim Ledbetter
commit 391a08bf17
Notes: github-actions[bot] 2025-01-25 03:41:07 +00:00
6 changed files with 165 additions and 114 deletions

View file

@ -8,8 +8,10 @@ interface HTMLDialogElement : HTMLElement {
[CEReactions, Reflect] attribute boolean open;
attribute DOMString returnValue;
[FIXME, CEReactions] attribute DOMString closedBy;
[CEReactions] undefined show();
[CEReactions] undefined showModal();
[CEReactions] undefined close(optional DOMString returnValue);
[FIXME, CEReactions] undefined requestClose(optional DOMString returnValue);
};