summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibWeb/DOM/Document.h
AgeCommit message (Expand)Author
2022-01-07Everywhere: Fix spelling mistakesmjz19910
2021-12-11Everywhere: Fix -Winconsistent-missing-override warnings from ClangDaniel Bertalan
2021-12-09LibWeb: Make DOMImplementation forward its ref count to DOM::DocumentAndreas Kling
2021-11-18LibWeb: Move BrowsingContext into HTML/Andreas Kling
2021-11-17LibWeb: Remove background-repeat/image fields and gettersSam Atkins
2021-11-17LibWeb: Store background layers in ComputedValuesSam Atkins
2021-11-11Everywhere: Pass AK::StringView by valueAndreas Kling
2021-10-06LibWeb: Make CSS layout lazierAndreas Kling
2021-10-05LibWeb: Fire MediaQueryListEvents when an MQL's match-state changesSam Atkins
2021-10-03LibWeb: Let HTML::EventLoop drive the firing of `resize` eventsAndreas Kling
2021-09-27LibWeb: Support Document.hidden and Document.visibilityStateAndreas Kling
2021-09-26LibWeb: Implement Document.importNodeLuke Wilde
2021-09-26LibWeb: Add a "page showing" flag to documentsAndreas Kling
2021-09-26LibWeb: Implement "update the current document readiness" from specAndreas Kling
2021-09-26LibWeb: Store HTML document ready state as an enumAndreas Kling
2021-09-26LibWeb: Allow HTML parser to delay delivery of the document "load" eventAndreas Kling
2021-09-26LibWeb: Implement more of HTMLParser::the_end() and bring closer to specAndreas Kling
2021-09-25LibWeb: Rename HTMLDocumentParser => HTMLParserAndreas Kling
2021-09-24LibWeb: Rename CSS::StyleResolver => StyleComputerAndreas Kling
2021-09-22LibWeb: Add getElementsByTagNameNS and add support for * in non-NSLuke Wilde
2021-09-20LibWeb: Make <script src> loads partially async (by following the spec)Andreas Kling
2021-09-19LibWeb: Replace ScriptExecutionContext::interpreter() with realm()Andreas Kling
2021-09-19LibWeb: Add DOM::Document::is_active()Andreas Kling
2021-09-16LibWeb: Use explicit move to avoid unnecessary RefPtr ref / unrefBrian Gianforcaro
2021-09-15LibWeb: Speed up computed style calculationSam Atkins
2021-09-13LibWeb: Add the Web::URL namespace and move URLEncoder to itIdan Horowitz
2021-09-12LibWeb: Expose the location object via Document.locationLuke Wilde
2021-09-12LibWeb: Add the History object and stub pushState and replaceStateLuke Wilde
2021-09-12LibWeb: Add Document::is_fully_activeLuke Wilde
2021-09-11LibWeb: Add naive support for the Document.referrer attributeAndreas Kling
2021-09-09LibWeb: Rename Document::complete_url() => parse_url()Andreas Kling
2021-09-09LibWeb: Implement "Document has a style sheet that is blocking scripts"Andreas Kling
2021-09-08LibWeb: Rename InitialContainingBlockBox => InitialContainingBlockAndreas Kling
2021-09-02LibWeb: Give each Node a unique IDSam Atkins
2021-07-05LibWeb: Make WrapperGenerator generate nullable wrapper typesLuke
2021-06-29LibWeb: Add JSON serialization method to DOM::NodeAdam Hodgen
2021-06-25LibWeb: Support :active pseudo-class for hyperlinks, :focus possiblyPaul Irwin
2021-05-30LibWeb: Rename Web::Frame to Web::BrowsingContextAndreas Kling
2021-05-18LibWeb: Change Document's m_encoding to Optional<String>Max Wipfli
2021-05-07LibWeb: Add non-const variants of Document::{html_element,body,head}()Luke
2021-05-04LibWeb: Add Document.{images,embeds,plugins,links,forms,scripts}Luke
2021-04-23AK: Rename adopt() to adopt_ref()Andreas Kling
2021-04-22LibWeb: Implement document.anchorsAndreas Kling
2021-04-22LibWeb: Implement document.appletsAndreas Kling
2021-04-22LibWeb: Implement a slow but functional HTMLCollection :^)Andreas Kling
2021-04-22Everything: Move to SPDX license identifiers in all files.Brian Gianforcaro
2021-04-14Browser+LibWeb+WebContent: Track the source of document.cookie requestsTimothy Flynn
2021-04-13LibWeb: Fix some FIXMEs related to ExceptionOr<T>AnotherTest
2021-04-11LibWeb+WebContent: Hook document.cookie to the backend cookie storageTimothy Flynn
2021-04-10LibWeb: Add a basic implementation of Document.createEvent()Linus Groh