mirror of
https://github.com/RGBCube/serenity
synced 2025-07-24 19:07:35 +00:00
LibWeb: Minor tweaks to HTMLToken declaration
This commit is contained in:
parent
494870e696
commit
004ef9a86b
1 changed files with 3 additions and 1 deletions
|
@ -56,7 +56,7 @@ private:
|
||||||
struct {
|
struct {
|
||||||
StringBuilder name;
|
StringBuilder name;
|
||||||
StringBuilder public_identifier;
|
StringBuilder public_identifier;
|
||||||
StringBuilder system_public_identifier;
|
StringBuilder system_identifier;
|
||||||
bool force_quirks { false };
|
bool force_quirks { false };
|
||||||
} m_doctype;
|
} m_doctype;
|
||||||
|
|
||||||
|
@ -68,6 +68,8 @@ private:
|
||||||
Vector<Attribute> attributes;
|
Vector<Attribute> attributes;
|
||||||
} m_tag;
|
} m_tag;
|
||||||
|
|
||||||
|
// Type::Comment
|
||||||
|
// Type::Character
|
||||||
struct {
|
struct {
|
||||||
StringBuilder data;
|
StringBuilder data;
|
||||||
} m_comment_or_character;
|
} m_comment_or_character;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue