summaryrefslogtreecommitdiff
path: root/Userland/Services/WebContent/ConnectionFromClient.h
AgeCommit message (Collapse)Author
2022-09-20LibWeb+WebContent+Browser: Plumb visibility state from GUI to web pagesAndreas Kling
OOPWV now reacts to show/hide events and informs LibWeb about the state change. This makes visibilitychange events fire when switching tabs. :^)
2022-09-06LibWeb+WebContent: Store Realm instead of Interpreter in ConsoleClientAndreas Kling
2022-08-01Userland+Base: Make the window titlebar font configurable separatelyAndreas Kling
Instead of defaulting to "bold variant of the system default font", let's allow the user to set any font they want as the titlebar font.
2022-06-27Browser+LibWeb+WebContent: Allow Browser to load local filesLucas CHOLLET
To achieve this goal: - The Browser unveils "/tmp/portal/filesystemaccess" - Pass the page through LoadRequest => ResourceLoader - ResourceLoader requests a file to the FileSystemAccessServer via IPC - OutOfProcessWebView handles it and sends a file descriptor back to the Page.
2022-06-20LibWeb+LibWebView+WebContent: Get doubleclick events from LibGUIKarol Kosek
2022-05-28Browser+LibWeb+WebContent: Add ability to inspect session storageRafał Babiarz
2022-04-09Browser+LibWeb+WebContent: Implement per-URL-pattern proxiesAli Mohammad Pur
...at least for SOCKS5.
2022-04-03Browser+LibWeb+WebContent: Add ability to inspect local storageValtteri Koskivuori
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.
2022-04-01Everywhere: Run clang-formatIdan Horowitz
2022-03-31WebContent: Add plumbing for 'is scripting enabled' settingLinus Groh
2022-03-24Services: Use default constructors/destructorsLenny Maiorani
https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#cother-other-default-operation-rules "The compiler is more likely to get the default semantics right and you cannot implement these functions better than the compiler."
2022-03-10Browser+LibWeb+WebContent: Show style for pseudo-elements :^)Sam Atkins
This expands the InspectorWidget::Selection to include an optional PseudoElement, which is then passed over IPC to request style information for it. As noted, this has some pretty big limitations because pseudo-elements don't have DOM nodes: - Declared style has to be recalculated when it's requested. - We don't display the computed style. - We don't display custom properties.
2022-02-25Userland: Rename IPC ClientConnection => ConnectionFromClientItamar
This was done with CLion's automatic rename feature and with: find . -name ClientConnection.h | rename 's/ClientConnection\.h/ConnectionFromClient.h/' find . -name ClientConnection.cpp | rename 's/ClientConnection\.cpp/ConnectionFromClient.cpp/'