HTMLAnchorElement.cpp 212 B

12345678910
  1. #include <LibHTML/DOM/HTMLAnchorElement.h>
  2. HTMLAnchorElement::HTMLAnchorElement(Document& document, const String& tag_name)
  3. : HTMLElement(document, tag_name)
  4. {
  5. }
  6. HTMLAnchorElement::~HTMLAnchorElement()
  7. {
  8. }