HTMLAnchorElement.h 266 B

1234567891011
  1. #pragma once
  2. #include <LibHTML/DOM/HTMLElement.h>
  3. class HTMLAnchorElement : public HTMLElement {
  4. public:
  5. HTMLAnchorElement(Document&, const String& tag_name);
  6. virtual ~HTMLAnchorElement() override;
  7. String href() const { return attribute("href"); }
  8. };