mirror of
https://github.com/RGBCube/serenity
synced 2025-05-28 08:45:09 +00:00
LibWeb: Parse "br" end tags during "in body"
This commit is contained in:
parent
9fca4b56d3
commit
1ad81e4833
2 changed files with 9 additions and 1 deletions
|
@ -123,6 +123,12 @@ public:
|
|||
return {};
|
||||
}
|
||||
|
||||
void drop_attributes()
|
||||
{
|
||||
ASSERT(is_start_tag() || is_end_tag());
|
||||
m_tag.attributes.clear();
|
||||
}
|
||||
|
||||
Type type() const { return m_type; }
|
||||
|
||||
String to_string() const;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue