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

LibWeb: Add the MathML Element

This patch introduces the MathML element, which provides the interface
all MathML elements are built from.
This commit is contained in:
Jonah 2023-07-05 20:24:51 -05:00 committed by Sam Atkins
parent cce50b1841
commit 52d6df5ee5
6 changed files with 78 additions and 0 deletions

View file

@ -497,6 +497,10 @@ enum class LayoutMode;
struct LayoutState;
}
namespace Web::MathML {
class MathMLElement;
}
namespace Web::MimeSniff {
class MimeType;
}