ladybird/Libraries/LibHTML/DOM/HTMLFontElement.h
Andreas Kling 8fb979148d LibHTML: Add support for <font color>
This was pleasantly trivial to implement with the new support for
presentational hints. :^)
2019-10-04 21:14:59 +02:00

11 lines
284 B
C++

#pragma once
#include <LibHTML/DOM/HTMLElement.h>
class HTMLFontElement : public HTMLElement {
public:
HTMLFontElement(Document&, const String& tag_name);
virtual ~HTMLFontElement() override;
virtual void apply_presentational_hints(StyleProperties&) const override;
};