1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 08:08:12 +00:00

LibWeb: Minor tweaks to HTMLToken declaration

This commit is contained in:
Andreas Kling 2020-05-22 23:45:02 +02:00
parent 494870e696
commit 004ef9a86b

View file

@ -56,7 +56,7 @@ private:
struct {
StringBuilder name;
StringBuilder public_identifier;
StringBuilder system_public_identifier;
StringBuilder system_identifier;
bool force_quirks { false };
} m_doctype;
@ -68,6 +68,8 @@ private:
Vector<Attribute> attributes;
} m_tag;
// Type::Comment
// Type::Character
struct {
StringBuilder data;
} m_comment_or_character;