summaryrefslogtreecommitdiff
path: root/Userland/Services/WebContent/ClientConnection.cpp
AgeCommit message (Expand)Author
2022-02-08LibWeb: Introduce the Environment Settings ObjectLuke Wilde
2022-02-08LibJS+Everywhere: Remove all VM::clear_exception() callsdavidot
2022-02-06LibWeb: Plumb OOPWV focus state across the IPC boundaryAndreas Kling
2022-02-05Browser: Add Debug menu action for dumping the stacking context treeAndreas Kling
2022-01-22LibJS: Refactor interpreter to use Script and Source Text ModulesLuke Wilde
2022-01-20Userland: Add horizontal mouse scroll supportDmitry Petrov
2022-01-15LibCore+LibIPC+Everywhere: Return Stream::LocalSocket from LocalServersin-ack
2022-01-08LibJS: Convert Interpreter::run() to ThrowCompletionOr<Value>Linus Groh
2021-12-10Browser+LibWeb+WebContent: Add variables display to InspectorSam Atkins
2021-11-30WebContent: Remove unnecessary client mapAndreas Kling
2021-11-24WebContent: Support inspection of DOM in nested browsing contextsVyacheslav Pukhanov
2021-11-18LibWeb: Move BrowsingContext into HTML/Andreas Kling
2021-10-31LibWeb+WebContent: Add set_preferred_color_scheme IPC callSam Atkins
2021-10-01Browser: Check m_console_client is non-null before dereferencing itIdan Horowitz
2021-09-28LibWeb: Fire "keyup" events as well :^)Andreas Kling
2021-09-27LibWeb+Browser: Make ad blocking work in the multi-process worldAndreas Kling
2021-09-12LibWeb+Browser: Add Debug menu action for toggling Same-Origin PolicyAndreas Kling
2021-09-09LibWeb: Rename BrowsingContext::document() => active_document()Andreas Kling
2021-09-08LibWeb: Rename InitialContainingBlockBox => InitialContainingBlockAndreas Kling
2021-09-08LibWeb+WebContent: Port DumpLayoutTree to OutOfProcessWebViewAndreas Kling
2021-09-06LibWeb+WebContent: Remove old console-logging IPC callsSam Atkins
2021-09-06WebContent: Store messages in WebContentConsoleClientSam Atkins
2021-09-06LibWeb+WebContent: Add new console-message IPC callsSam Atkins
2021-09-06WebContent: Implement ConsoleGlobalObject which proxies to WindowObjectSam Atkins
2021-09-03Everywhere: Use my shiny new serenityos.org email :^)Sam Atkins
2021-09-02LibWeb+WebContent: Add query for hovered DOM node to OOPWVSam Atkins
2021-09-02LibWeb+WebContent: Add inspect_dom_node() IPC callSam Atkins
2021-08-24LibWeb+WebContent: Add a simple API for running arbitrary JavaScriptAndreas Kling
2021-08-01Services: Remove unused header includesBrian Gianforcaro
2021-07-14LibWeb: Add OOPWV IPC for selecting all textTimothy Flynn
2021-07-14LibWeb: Add OOPWV IPC for retrieving selected textTimothy Flynn
2021-06-29LibWeb+WebContent: Add IPC flow for Inspect DOM TreeAdam Hodgen
2021-06-20WindowServer: Add initial support for rendering on multiple screensTom
2021-05-30LibWeb: Rename Web::Frame to Web::BrowsingContextAndreas Kling
2021-05-23WebContent: Remove unnecessary greet() messageAndreas Kling
2021-05-21LibGfx+WindowServer: Have WindowServer broadcast system font settingsAndreas Kling
2021-05-03Userland: Use snake case names in .ipc filesGunnar Beutner
2021-05-03Userland: Update IPC calls to use proxiesGunnar Beutner
2021-05-03Userland: Change IPC funcs to use plain arguments instead of a structGunnar Beutner
2021-05-02Userland: Make IPC handlers return void if they don't have any outputsGunnar Beutner
2021-05-02Userland: Get rid of the OwnPtr<...> boilerplate code for IPC handlersGunnar Beutner
2021-04-22Everything: Move to SPDX license identifiers in all files.Brian Gianforcaro
2021-04-16Browser+LibWeb+WebContent: Parse cookies in the OOP tabTimothy Flynn
2021-04-14Browser+LibWeb: Add support for spoofing the browser user agentIdan Horowitz
2021-04-04LibWeb+WebContent: Keep track of screen rectLinus Groh
2021-03-30Browser+LibWeb+WebContent: Add action to clear resource cacheTimothy Flynn
2021-02-28WebContent: Added IPC calls for initializing JS console and sending inputBrandon Scott
2021-02-23WebContent: Added IPC calls for getting sourceBrandon Scott
2021-02-22LibWeb: Plumb wheel events from widget layer to EventHandlerAndreas Kling
2021-02-08Everywhere: Replace dbgln<flag>(...) with dbgln_if(flag, ...)AnotherTest