1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 01:27:34 +00:00

LibWeb: Generate MathML Elements

We will now generate MathML elements when parsing HTML.
This commit is contained in:
Jonah 2023-07-05 20:25:52 -05:00 committed by Sam Atkins
parent 52d6df5ee5
commit 442602bec8
8 changed files with 123 additions and 1 deletions

View file

@ -22,6 +22,8 @@ public:
HTML::DOMStringMap* dataset() { return m_dataset.ptr(); }
HTML::DOMStringMap const* dataset() const { return m_dataset.ptr(); }
virtual Optional<ARIA::Role> default_role() const override;
protected:
virtual DOM::EventTarget& global_event_handlers_to_event_target(FlyString const&) override { return *this; }