1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-28 07:55:07 +00:00

LibWeb: Turn <td bgcolor> into background-color

This commit is contained in:
Andreas Kling 2020-06-12 22:47:51 +02:00
parent e9e2226544
commit ca41c2e4a0
2 changed files with 15 additions and 1 deletions

View file

@ -30,10 +30,13 @@
namespace Web {
class HTMLTableCellElement : public HTMLElement {
class HTMLTableCellElement final : public HTMLElement {
public:
HTMLTableCellElement(Document&, const FlyString& tag_name);
virtual ~HTMLTableCellElement() override;
private:
virtual void apply_presentational_hints(StyleProperties&) const override;
};
template<>