Ladybird: Implement a JavaScript console for the AppKit chrome

This adds menu items to open an interactive JavaScript console for a web
page. This more or less mimics the Qt implementation of the console.
Hooks are included to tie the lifetime of the console window with the
tab it belongs to; if the tab is closed, the console window is closed.
This commit is contained in:
Timothy Flynn 2023-08-26 22:43:35 -04:00 committed by Andrew Kaster
commit 4d26e4650f
Notes: sideshowbarker 2024-07-17 06:20:50 +09:00
11 changed files with 306 additions and 0 deletions

View file

@ -334,6 +334,8 @@ enum class IsHistoryNavigation {
- (void)windowWillClose:(NSNotification*)notification
{
[[self tab] tabWillClose];
auto* delegate = (ApplicationDelegate*)[NSApp delegate];
[delegate removeTab:self];
}