summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibWeb/Page/Page.cpp
AgeCommit message (Collapse)Author
2021-11-18LibWeb: Move BrowsingContext into HTML/Andreas Kling
Browsing contexts are defined by the HTML specification, so let's move them into the HTML directory. :^)
2021-11-11Everywhere: Pass AK::StringView by valueAndreas Kling
2021-10-31LibWeb+WebContent: Add set_preferred_color_scheme IPC callSam Atkins
This allows the owner of a WebView to override whether to use a dark theme or not, instead of just using the system theme's IsDark property.
2021-09-28LibWeb: Fire "keyup" events as well :^)Andreas Kling
This was easy, now that we have KeyboardEvent.
2021-09-13LibWeb: Add the Web::URL namespace and move URLEncoder to itIdan Horowitz
This namespace will be used for all interfaces defined in the URL specification, like URL and URLSearchParams. This has the unfortunate side-effect of requiring us to use the fully qualified AK::URL name whenever we want to refer to the AK class, so this commit also fixes all such references.
2021-09-12LibWeb: Start tracking elapsed time when a resource is loadedBrian Gianforcaro
2021-08-24LibWeb+Browser: Remove unnecessary InProcessWebView.h includesAndreas Kling
2021-05-30LibWeb: Rename Web::Frame to Web::BrowsingContextAndreas Kling
Our "frame" concept very closely matches what the web specs call a "browsing context", so let's rename it to that. :^) The "main frame" becomes the "top-level browsing context", and "sub-frames" are now "nested browsing contexts".
2021-04-22Everything: Move to SPDX license identifiers in all files.Brian Gianforcaro
SPDX License Identifiers are a more compact / standardized way of representing file license information. See: https://spdx.dev/resources/use/#identifiers This was done with the `ambr` search and replace tool. ambr --no-parent-ignore --key-from-file --rep-from-file key.txt rep.txt *
2021-04-04LibWeb+WebContent: Keep track of screen rectLinus Groh
It is now possible to get the up-to-date screen rect from a Web::Page.
2021-02-22LibWeb: Plumb wheel events from widget layer to EventHandlerAndreas Kling
2021-01-12Libraries: Move to Userland/Libraries/Andreas Kling