LibWeb: Respect the bgcolor attribute on <marquee> elements

We don't yet animate marquees, but we can at least fill them with the
right background color.
This commit is contained in:
Andreas Kling 2021-02-10 09:54:16 +01:00
commit acd46dcb0c
Notes: sideshowbarker 2024-07-18 22:27:07 +09:00
2 changed files with 15 additions and 0 deletions

View file

@ -37,6 +37,9 @@ public:
HTMLMarqueeElement(DOM::Document&, QualifiedName);
virtual ~HTMLMarqueeElement() override;
private:
virtual void apply_presentational_hints(CSS::StyleProperties&) const override;
};
}