summaryrefslogtreecommitdiff
path: root/Libraries/LibHTML
AgeCommit message (Expand)Author
2019-10-05LibHTML: Make StyleResolver responsible for loading the default styleAndreas Kling
2019-10-04LibHTML: Make CSS inheritance slightly less hackyAndreas 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-03LibHTML: Remove unused LayoutInline::layout()Andreas Kling
2019-10-03LibHTML: Make "white-space: pre" kinda workAndreas 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-01LibHTML: Implement the <hr> elementAndreas Kling
2019-10-01LibHTML: Implement basic border renderingAndreas Kling
2019-10-01LibHTML: Include padding when rendering background colorsAndreas Kling
2019-10-01LibHTML: Tweak default CSS to bring it a bit closer to HTML4Andreas Kling
2019-10-01AK: Remove empty files JsonArray.cpp and JsonObject.cppAndreas Kling
2019-09-30LibHTML: Implement basic support for inline style attributesAndreas Kling
2019-09-30LibHTML: Refactor the CSS parser into a classAndreas Kling
2019-09-30LibHTML: Fix incorrect CSS object modelAndreas Kling
2019-09-29LibHTML: Reduce debug spam in HtmlView mouse event handlersAndreas Kling
2019-09-29LibHTML: Implement basic support for background-colorAndreas Kling
2019-09-29LibHTML: Add a simple <style> element for inline CSSAndreas Kling
2019-09-29LibHTML: Add inserted_into() and removed_from() TreeNode callbacksAndreas Kling
2019-09-29LibHTML: Make <div> elements display: blockAndreas Kling
2019-09-29LibHTML: Fix broken parsing of ID and class selectorsAndreas Kling
2019-09-29LibHTML: Non-element (Text) Nodes should get style from their parentAndreas Kling
2019-09-29LibHTML: Add a way to get a Document's titleAndreas Kling
2019-09-29LibHTML: Add Node::text_content()Andreas Kling
2019-09-29LibHTML: Add HTMLHeadingElement for <h1> through <h6>Andreas 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
2019-09-29LibHTML: Add LayoutNode::document() for easy accessAndreas Kling
2019-09-29LibHTML: Make sure every DOM Node belongs to a DocumentAndreas Kling
2019-09-29LibHTML: Make hit testing work for LayoutTextAndreas Kling
2019-09-28LibHTML: Implement naive hit testingAndreas Kling
2019-09-28LibHTML: Add virtual Node::tag_name()Andreas Kling
2019-09-28LibHTML: Make <a> tags blue and underline by defaultAndreas Kling
2019-09-28LibHTML: Implement basic support for "text-decoration: underline"Andreas Kling
2019-09-28LibHTML: Respect the CSS "color" property for textAndreas Kling
2019-09-28LibHTML: Make h1 and h2 tags use Pebbleton Bold by default :^)Andreas Kling