mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-05-08 16:12:23 +02:00
This patch adds HTMLBodyElement::parse_attribute() where we extract the link colors and stash them away on Document.
13 lines
357 B
C++
13 lines
357 B
C++
#pragma once
|
|
|
|
#include <LibHTML/DOM/HTMLElement.h>
|
|
|
|
class HTMLBodyElement : public HTMLElement {
|
|
public:
|
|
HTMLBodyElement(Document&, const String& tag_name);
|
|
virtual ~HTMLBodyElement() override;
|
|
|
|
virtual void parse_attribute(const String&, const String&) override;
|
|
virtual void apply_presentational_hints(StyleProperties&) const override;
|
|
};
|