Browser+LibWeb+WebContent: Add ability to inspect local storage

The storage inspector now has a new tab for local storage. The next step
would be to persist local storage and receive real-time notifications
for changes to update the table view.
This commit is contained in:
Valtteri Koskivuori 2022-04-02 00:14:04 +03:00 committed by Linus Groh
commit 45a81f5a2c
Notes: sideshowbarker 2024-07-17 14:33:18 +09:00
14 changed files with 168 additions and 4 deletions

View file

@ -555,6 +555,10 @@ void BrowserWindow::create_new_tab(URL url, bool activate)
return m_cookie_jar.get_all_cookies();
};
new_tab.on_get_local_storage_entries = [this]() {
return active_tab().m_web_content_view->get_local_storage_entries();
};
new_tab.load(url);
dbgln_if(SPAM_DEBUG, "Added new tab {:p}, loading {}", &new_tab, url);