Age | Commit message (Collapse) | Author | |
---|---|---|---|
2021-09-18 | LibWeb: Implement window.location.port | Andreas Kling | |
This returns the port of the current document's URL. :^) | |||
2021-09-14 | AK: Make URL::m_port an Optional<u16>, Expose raw port getter | Idan 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-12 | LibWeb: Implement some custom JS internal overrides for Location | Luke Wilde | |
As required by the spec. Note that this isn't the full suite of overrides. | |||
2021-09-09 | LibWeb: Rename Document::complete_url() => parse_url() | Andreas Kling | |
This better matches the spec nomenclature. | |||
2021-09-09 | LibWeb: Rename DOM::Window::document() => associated_document() | Andreas Kling | |
Match the spec nomenclature. | |||
2021-07-05 | LibWeb: Replace usage of native properties with accessors in Location | Idan Horowitz | |
This is required by the WebIDL specification. | |||
2021-05-07 | LibWeb: Convert StringBuilder::appendf() => AK::Format | Andreas Kling | |
2021-04-22 | Everything: 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-12 | Libraries: Move to Userland/Libraries/ | Andreas Kling | |