summaryrefslogtreecommitdiff
path: root/Libraries/LibWeb/WebViewHooks.h
AgeCommit message (Collapse)Author
2020-12-08LibWeb+WebContent: Add on_load_finish hook to web viewsAndreas Kling
This isn't entirely symmetrical with on_load_start as it will also fire on reloads and back/forward navigations. However, it's good enough for some basic use cases, and we can do more sophisticated notifications later on when we need them.
2020-10-02LibWeb: Add a PageClient callback for image context menu requestsAndreas Kling
When the user right-clicks on an image, you might want to show a special context menu, separate from the regular link context menu. This patch only implements enough of the functionality to get this working in a single-process context.
2020-07-26LibWeb: Move DOM classes into the Web::DOM namespaceAndreas Kling
LibWeb keeps growing and the Web namespace is filling up fast. Let's put DOM stuff into Web::DOM, just like we already started doing with SVG stuff in Web::SVG.
2020-07-06LibWeb: Add a shared WebViewHooks base class for both web view widgetsAndreas Kling
This will make it easier for Browser to share code between both views.