summaryrefslogtreecommitdiff
path: root/Libraries/LibHTML/HtmlView.cpp
AgeCommit message (Expand)Author
2020-02-06LibDraw: Put all classes in the Gfx namespaceAndreas Kling
2020-02-02LibGUI: Put all classes in the GUI namespace and remove the leading GAndreas Kling
2020-01-18Meta: Add license header to source filesAndreas Kling
2020-01-05LibHTML: Respect the system themeSergey Bugaev
2019-12-24LibGUI+LibDraw: Add "Palette" concept for scoped color themingAndreas Kling
2019-12-18LibHTML: Push the visible viewport rect from HtmlView to FrameAndreas Kling
2019-11-25LibHTML: Give Frame a (weak) back-pointer to the HtmlViewAndreas Kling
2019-11-18LibHTML: Use floating point numbers throughout the layout treeAndreas Kling
2019-11-06LibHTML: Rename parse_html() => parse_html_document()Andreas Kling
2019-11-06Revert "LibHTML: Rename parse_html() => parse_html_document()"Andreas Kling
2019-11-06LibHTML: Rename parse_html() => parse_html_document()Andreas Kling
2019-11-05LibHTML: Build some foundation for text selectionAndreas Kling
2019-10-21LibHTML: <a href="#foo"> should prefer any element type with id=fooAndreas Kling
2019-10-21LibHTML: Clicking on a fragment link should prefer <a id> over <a name>Andreas Kling
2019-10-21LibHTML: Add Document::get_element_by_id() and get_elements_by_name()Andreas Kling
2019-10-20LibHTML: HtmlView only needs to store the main Frame, not the DocumentAndreas Kling
2019-10-20LibHTML+Browser: Support scrolling to anchor with <a href="#foo">Andreas Kling
2019-10-19LibHTML+Browser: Show target URL of hovered links in Browser statusbarAndreas Kling
2019-10-19LibHTML: Implement basic tiled background image supportAndreas Kling
2019-10-19LibHTML: Allow loading of PNG's directly into the HtmlViewAndreas Kling
2019-10-17LibHTML: Add basic keyboard navigation (up/down/pgdn/pgup/home/end/etc)Andreas Kling
2019-10-15LibHTML: Add the currently visible viewport rect to RenderingContextAndreas Kling
2019-10-14LibHTML: Rename Document's invalidate_{style,layout}() to update_foo()Andreas Kling
2019-10-13LibHTML: Add some convenient geometry getters on LayoutNodeAndreas Kling
2019-10-13LibHTML: Run second layout pass if first layout adds/removes scrollbarsAndreas Kling
2019-10-13LibHTML: Move layout root from HtmlView to DocumentAndreas Kling
2019-10-12LibHTML+Browser: Add debug option to draw borders around line boxesAndreas Kling
2019-10-10LibHTML: Show a hand cursor when hovering over a clickable link :^)Andreas Kling
2019-10-09LibHTML: Tear down the layout tree before changing the Frame's documentAndreas Kling
2019-10-09LibHTML: Implement the <blink> elementAndreas Kling
2019-10-09LibHTML: Rename Document::normalize() to fixup() and always do itAndreas Kling
2019-10-08LibHTML: Add ResourceLoader to support protocol-agnostic URL loadingAndreas Kling
2019-10-07LibHTML: Don't crash when calling set_document(nullptr)Andreas Kling
2019-10-07LibHTML: Make the CSS and HTML parsers take StringViewsAndreas Kling
2019-10-07LibHTML: Start adding support for <link rel="stylesheet">Andreas Kling
2019-10-06LibHTML: Optionally pass document URL to the HTML parserAndreas Kling
2019-10-06LibHTML: Add function for invalidating the document layoutConrad Pankoff
2019-10-05LibHTML: Always fill the entire paint event rect with backgroundAndreas Kling
2019-10-05LibHTML: Fire the HtmlView::on_title_change hook after a load finishesAndreas Kling
2019-10-05LibHTML: Add load(URL) and reload() functions to HtmlViewAndreas Kling
2019-10-04LibHTML: Add support for <body bgcolor="#rrggbb" text="#rrggbb">Andreas Kling
2019-10-04LibHTML: Add a Frame class and use it for document layout widthAndreas Kling
2019-10-03LibHTML: Reduce debug spam from mouse eventsAndreas Kling
2019-10-03LibHTML: Let's put debug output on the debugger streamAndreas Kling
2019-10-03LibHTML: Adjust mouse event positions before using them for hit testingAndreas Kling
2019-09-29LibHTML: Reduce debug spam in HtmlView mouse event handlersAndreas Kling
2019-09-29LibHTML: Implement basic HTMLElement.title supportAndreas Kling
2019-09-29LibHTML: Detect link clicksAndreas Kling
2019-09-29LibHTML: Detect hovering over linksAndreas Kling
2019-09-29LibHTML: Have Document track its hovered NodeAndreas Kling