summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibWeb/Bindings/LocationObject.cpp
AgeCommit message (Collapse)Author
2021-09-18LibWeb: Implement window.location.portAndreas Kling
This returns the port of the current document's URL. :^)
2021-09-14AK: Make URL::m_port an Optional<u16>, Expose raw port getterIdan Horowitz
Our current way of signalling a missing port with m_port == 0 was lacking, as 0 is a valid port number in URLs.
2021-09-12LibWeb: Implement some custom JS internal overrides for LocationLuke Wilde
As required by the spec. Note that this isn't the full suite of overrides.
2021-09-09LibWeb: Rename Document::complete_url() => parse_url()Andreas Kling
This better matches the spec nomenclature.
2021-09-09LibWeb: Rename DOM::Window::document() => associated_document()Andreas Kling
Match the spec nomenclature.
2021-07-05LibWeb: Replace usage of native properties with accessors in LocationIdan Horowitz
This is required by the WebIDL specification.
2021-05-07LibWeb: Convert StringBuilder::appendf() => AK::FormatAndreas Kling
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-01-12Libraries: Move to Userland/Libraries/Andreas Kling