summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Kling <kling@serenityos.org>2020-05-22 23:45:02 +0200
committerAndreas Kling <kling@serenityos.org>2020-05-22 23:45:02 +0200
commit004ef9a86bba07fdf2ab0c592aa05aef462f5326 (patch)
treee64a6cafc39e09bd4b2916c415c4098b90243e94
parent494870e69639964c51c7d477fe0cf55e5759c3d8 (diff)
downloadserenity-004ef9a86bba07fdf2ab0c592aa05aef462f5326.zip
LibWeb: Minor tweaks to HTMLToken declaration
-rw-r--r--Libraries/LibWeb/Parser/HTMLToken.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/Libraries/LibWeb/Parser/HTMLToken.h b/Libraries/LibWeb/Parser/HTMLToken.h
index 398a01ac7f..93d27adf14 100644
--- a/Libraries/LibWeb/Parser/HTMLToken.h
+++ b/Libraries/LibWeb/Parser/HTMLToken.h
@@ -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;