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
commit 992964aa7d
Notes: sideshowbarker 2024-07-18 09:01:47 +09:00
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;