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

LibWeb: Remove StringBuilders from HTMLToken::m_doctype

This commit is contained in:
Gunnar Beutner 2021-05-23 08:20:03 +02:00 committed by Andreas Kling
parent 2150609590
commit 992964aa7d
5 changed files with 60 additions and 45 deletions

View file

@ -194,11 +194,11 @@ private:
struct {
// NOTE: "Missing" is a distinct state from the empty string.
StringBuilder name;
String name;
bool missing_name { true };
StringBuilder public_identifier;
String public_identifier;
bool missing_public_identifier { true };
StringBuilder system_identifier;
String system_identifier;
bool missing_system_identifier { true };
bool force_quirks { false };
} m_doctype;