LibWeb: Implement dialog.requestClose()

This commit is contained in:
Luke Warlow
2025-01-16 20:37:18 +00:00
committed by Andrew Kaster
parent b056e27afd
commit dd37d1c536
8 changed files with 67 additions and 17 deletions

View File

@@ -12,6 +12,6 @@ interface HTMLDialogElement : HTMLElement {
[CEReactions] undefined show();
[CEReactions] undefined showModal();
[CEReactions] undefined close(optional DOMString returnValue);
[FIXME, CEReactions] undefined requestClose(optional DOMString returnValue);
[CEReactions] undefined requestClose(optional DOMString returnValue);
};