1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-28 17:25:06 +00:00

LibWeb: Implement HTMLDialogElement::close() for non-modal dialogs

This commit is contained in:
Tim Ledbetter 2024-02-13 22:37:16 +00:00 committed by Tim Flynn
parent cfbd14b958
commit 8042558805
4 changed files with 59 additions and 2 deletions

View file

@ -33,6 +33,8 @@ private:
virtual void initialize(JS::Realm&) override;
void close_the_dialog(Optional<String> result);
String m_return_value;
};