summaryrefslogtreecommitdiff
path: root/Documentation/Browser
AgeCommit message (Collapse)Author
2023-03-14Documentation: Start documenting LibWeb code style & patternsLinus Groh
2022-10-09Documentation: Update AddNewIDLFile for GC and Exposed changesAndrew Kaster
2022-10-03Documentation: Change references to uid based sockets to sidsPeter Elliott
2022-09-21Everywhere: Rename WrapperGenerator to BindingsGeneratorLinus Groh
This code generator no longer creates JS wrappers for platform objects in the old sense, instead they're JS objects internally themselves. Most of what we generate now are prototypes - which can be seen as bindings for the internal C++ methods implementing getters, setters, and methods - as well as object constructors, i.e. bindings for the internal create_with_global_object() method. Also tweak the naming of various CMake glue code existing around this.
2022-09-06LibWeb+LibJS: Make the EventTarget hierarchy (incl. DOM) GC-allocatedAndreas Kling
This is a monster patch that turns all EventTargets into GC-allocated PlatformObjects. Their C++ wrapper classes are removed, and the LibJS garbage collector is now responsible for their lifetimes. There's a fair amount of hacks and band-aids in this patch, and we'll have a lot of cleanup to do after this.
2022-09-06LibWeb: Make DOM::Event and all its subclasses GC-allocatedAndreas Kling
2022-09-06LibWeb: Make CSSRule and all its subclasses GC-allocatedAndreas Kling
2022-08-14Base: Launch WebContent at session start-upLucas CHOLLET
2022-08-14Documentation: Add missing step when creating a new IDL typeSam Atkins
If you use your new IDL class as a type in an IDL file without doing this, you'll get confusing error messages.
2022-07-17LibWeb: Rename FormattingState to LayoutStateAndreas Kling
This seems a bit more descriptive (and also a bit shorter).
2022-05-13Meta: Move LibWeb's CMake generation script to its own fileDexesTTP
This patch has no functional changes, but prepares the CMake script to be able to handle LibWeb on Lagom.
2022-05-11Documentation: Correct and update IDL documentationSam Atkins
- Delete the part about removing `[Exposed=Window]` since that's not necessary and we may want that information there to generate the Window object. - Mention adding `#import`s. - Outline the requirements for the implementation class. - Mention the non-Event wrapper factories that need to know about certain types. I tend to refer to this document every time I add an IDL type so it's helpful if it's comprehensive.
2022-03-11Documentation: Add some notes about LibWeb's new paint treeAndreas Kling
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/'
2022-02-24Documentation: Start writing about "LibWeb: From loading to painting"Andreas Kling
This document is meant to cover every significant step in the journey from giving a page URL to LibWeb, and pixels showing up on screen. It's by no means complete, but I wrote a fair chunk already, so I'll commit at this stage and we can expand on it in-tree.
2021-10-04Documentation: Add documentation for adding IDL filesSam Atkins
There are several steps involved, which are not at all obvious unless you already know them. So now they're written down. :^)
2021-06-02Documentation: Correct some typos in kernel and browser docsSiddhant Rao
2021-04-25Services: Rename ProtocolServer to RequestServerDexesTTP
The current ProtocolServer was really only used for requests, and with the recent introduction of the WebSocket service, long-lasting connections with another server are not part of it. To better reflect this, this commit renames it to RequestServer. This commit also changes the existing 'protocol' portal to 'request', the existing 'protocol' user and group to 'request', and most mentions of the 'download' aspect of the request to 'request' when relevant, to make everything consistent across the system. Note that LibProtocol still exists as-is, but the more generic Client class and the more specific Download class have both been renamed to a more accurate RequestClient and Request to match the new names. This commit only change names, not behaviors.
2020-08-17LibWeb: Rename WebContentView => OutOfProcessWebViewAndreas Kling
2020-07-06Documentation: Add note about DNS lookups to browser architecture docsAndreas Kling
2020-07-06Documentation: Add a document about the Browser process architectureAndreas Kling