mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-28 11:49:44 +00:00
LibWeb: Remove StringBuilders from HTMLToken::m_doctype
This commit is contained in:
parent
2150609590
commit
992964aa7d
Notes:
sideshowbarker
2024-07-18 09:01:47 +09:00
Author: https://github.com/gunnarbeutner
Commit: 992964aa7d
Pull-request: https://github.com/SerenityOS/serenity/pull/8687
Reviewed-by: https://github.com/alimpfard
5 changed files with 60 additions and 45 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue