mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-31 21:29:06 +00:00
LibWeb: Rename HTMLToken::AttributeBuilder struct to Attribute
This does not contain StringBuilders anymore, so it can do with a simpler name: Attribute.
This commit is contained in:
parent
d82f3eb085
commit
f886aa15b8
Notes:
sideshowbarker
2024-07-18 08:53:10 +09:00
Author: https://github.com/MaxWipfli
Commit: f886aa15b8
Pull-request: https://github.com/SerenityOS/serenity/pull/8784
Reviewed-by: https://github.com/Hendiadyoin1
Reviewed-by: https://github.com/alimpfard
2 changed files with 5 additions and 5 deletions
|
@ -35,7 +35,7 @@ public:
|
|||
size_t column { 0 };
|
||||
};
|
||||
|
||||
struct AttributeBuilder {
|
||||
struct Attribute {
|
||||
String prefix;
|
||||
String local_name;
|
||||
String namespace_;
|
||||
|
@ -206,7 +206,7 @@ private:
|
|||
String tag_name;
|
||||
bool self_closing { false };
|
||||
bool self_closing_acknowledged { false };
|
||||
Vector<AttributeBuilder> attributes;
|
||||
Vector<Attribute> attributes;
|
||||
} m_tag;
|
||||
|
||||
// Type::Comment
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue