
This was pleasantly trivial to implement with the new support for presentational hints. :^)
11 lines
284 B
C++
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;
|
|
};
|