summaryrefslogtreecommitdiff
path: root/Libraries/LibHTML/DOM/HTMLElement.h
AgeCommit message (Collapse)Author
2019-09-29LibHTML: Implement basic HTMLElement.title supportAndreas Kling
We now show a tooltip for the hovered node's enclosing HTML element's title attribute, if one is present. This patch also adds HTMLHeadingElement. The tags h1-h6 will now create the right kind of objects.
2019-09-29LibHTML: Detect hovering over linksAndreas Kling
HtmlView now calls Node::enclosing_link_element() to find the nearest ancestor <a> element. This patch also adds HTMLElement and HTMLAnchorElement.