mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-30 05:08:56 +00:00
LibHTML: Add support for <font color>
This was pleasantly trivial to implement with the new support for presentational hints. :^)
This commit is contained in:
11
Libraries/LibHTML/DOM/HTMLFontElement.h
Normal file
11
Libraries/LibHTML/DOM/HTMLFontElement.h
Normal file
@@ -0,0 +1,11 @@
|
||||
#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;
|
||||
};
|
||||
Reference in New Issue
Block a user