mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-10-21 08:33:19 +00:00
12 lines
266 B
C
12 lines
266 B
C
![]() |
#pragma once
|
||
|
|
||
|
#include <LibHTML/DOM/HTMLElement.h>
|
||
|
|
||
|
class HTMLAnchorElement : public HTMLElement {
|
||
|
public:
|
||
|
HTMLAnchorElement(Document&, const String& tag_name);
|
||
|
virtual ~HTMLAnchorElement() override;
|
||
|
|
||
|
String href() const { return attribute("href"); }
|
||
|
};
|