summaryrefslogtreecommitdiff
path: root/Userland/Services/WebContent/PageHost.h
AgeCommit message (Collapse)Author
2021-03-02LibWeb: Handle scrolling an OutOfProcessWebViewAngus Gibson
When a mousewheel scroll event isn't handled by the web content itself (e.g. an overflowed box or similar), the event needs to get passed back up to the OutOfProcessWebView.
2021-02-28LibWeb: Support setting the cursor in OutOfProcessWebViewAdam Hodgen
2021-02-20LibWeb: Implement Window.prompt()Linus Groh
2021-02-10LibWeb+WebContent: Support window.confirm() in OOPWVAndreas Kling
2021-01-31Browser+LibWeb+WebContent: Make the "Debug" menu work in multi-processAndreas Kling
This patch adds an IPC call for debugging requests. It's stringly typed and very simple, and allows us to easily implement all the features in the Browser's Debug menu.
2021-01-30LibWeb: Don't try to create GUI::TextBox inside multi-process web viewsAndreas Kling
This is a workaround until we can implement a proper <input type=text> in terms of LibWeb primitives. This makes google.com not crash in multi-process mode (but there is no search box.)
2021-01-12Services: Move to Userland/Services/Andreas Kling