summaryrefslogtreecommitdiff
AgeCommit message (Expand)Author
2019-10-06LibHTML: Respect the link color set via <body link>Andreas Kling
2019-10-06LibHTML: Parse link, alink and vlink in <body> and pass to DocumentAndreas Kling
2019-10-06LibHTML: Add a per-attribute callback for Elements to parse attributesAndreas Kling
2019-10-06LibHTML: Various little improvements to the CSS parserAndreas Kling
2019-10-05LibHTML: Anonymous blocks *should* inherit some propertiesAndreas Kling
2019-10-05LibHTML: Support rendering <img src> with file:// URLsAndreas Kling
2019-10-05LibHTML: Let's not have anonymous blocks inherit their parent's styleAndreas Kling
2019-10-05LibHTML: Implement basic layout for inline <img alt>Andreas Kling
2019-10-05LibHTML: Make Node::create_layout_node() virtualAndreas Kling
2019-10-05LibHTML: Flesh out <img> element with LayoutImage and LayoutReplacedAndreas Kling
2019-10-05Ports: Add zlib portVincent Sanders
2019-10-05LibHTML: Always fill the entire paint event rect with backgroundAndreas Kling
2019-10-05Browser: Show the page title in the window title bar :^)Andreas Kling
2019-10-05LibHTML: Fire the HtmlView::on_title_change hook after a load finishesAndreas Kling
2019-10-05Base: Add a little welcome page for the browser at ~/www/welcome.htmlAndreas Kling
2019-10-05LibHTML: Render list markers in the same color as textAndreas Kling
2019-10-05Browser: Start working on a simple browser using LibHTMLAndreas Kling
2019-10-05LibHTML: Add load(URL) and reload() functions to HtmlViewAndreas Kling
2019-10-05AK: URL should support file:// URL'sAndreas Kling
2019-10-05LibGUI: Add a "reload" action to GCommonActionsAndreas Kling
2019-10-05LibGUI: Add back/forward actions to GCommonActionsAndreas Kling
2019-10-05LibHTML: Make StyleResolver responsible for loading the default styleAndreas Kling
2019-10-04LibHTML: Make CSS inheritance slightly less hackyAndreas Kling
2019-10-04Base: Add a little HTML test for presentational hintsAndreas Kling
2019-10-04LibHTML: Add support for <font color>Andreas Kling
2019-10-04LibHTML: Add support for <body bgcolor="#rrggbb" text="#rrggbb">Andreas Kling
2019-10-04LibHTML: Rename LayoutNode::style_properties() to LayoutNode::style()Andreas Kling
2019-10-04LibHTML: Rename ComputedStyle to BoxModelMetricsAndreas Kling
2019-10-04LibHTML: Add a Frame class and use it for document layout widthAndreas Kling
2019-10-04LibHTML: Remove unused FontStyle enumAndreas Kling
2019-10-04LibHTML: LayoutText should always use parent's style propertiesAndreas Kling
2019-10-04LibC: unistd.h should provide SEEK_SET etc. if stdio.h is not included (#629)Vincent Sanders
2019-10-04Ports: Add expat port (#628)Vincent Sanders
2019-10-03LibHTML: Remove unused LayoutInline::layout()Andreas Kling
2019-10-03LibHTML: Make "white-space: pre" kinda workAndreas Kling
2019-10-03LibMarkdown: Avoid emitting <pre> tags for now, to help LibHTMLAndreas Kling
2019-10-03LibHTML: Prettify ColorStyleValue::to_string() a little bitAndreas Kling
2019-10-03LibHTML: Forgot to account for -1 glyph spacing in text layoutAndreas Kling
2019-10-03LibHTML: Don't add whitespace line box fragments at start of lineAndreas Kling
2019-10-03LibHTML: Tweak "text-decoration: underline" look in LayoutTextAndreas Kling
2019-10-03LibHTML: Rewrite inline and text layoutAndreas 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-10-03GScrollableWidget: Add to_content_position(Point)Andreas Kling
2019-10-03LibGUI: Remove GModel::on_selection_changedSergey Bugaev
2019-10-03Help: Follow clicked linksSergey Bugaev
2019-10-03LibC: Implement dirname() and basename()Sergey Bugaev
2019-10-03Base: Add some "See also" links to the man pagesSergey Bugaev
2019-10-03LibMarkdown: Implement link supportSergey Bugaev