mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-10-27 11:24:16 +00:00
13 lines
313 B
C
13 lines
313 B
C
|
|
#pragma once
|
||
|
|
|
||
|
|
#include <LibHTML/DOM/HTMLElement.h>
|
||
|
|
|
||
|
|
class HTMLImageElement : public HTMLElement {
|
||
|
|
public:
|
||
|
|
HTMLImageElement(Document&, const String& tag_name);
|
||
|
|
virtual ~HTMLImageElement() override;
|
||
|
|
|
||
|
|
String alt() const { return attribute("alt"); }
|
||
|
|
String src() const { return attribute("src"); }
|
||
|
|
};
|