mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-05-03 17:58:49 +00:00
LibWeb: Append attributes to the correct element
The spec indicates we should append attributes to the top element of the stack of open elements. We were appending the attribute to the bottom.
This commit is contained in:
parent
9fe35ddddf
commit
657bbd1542
Notes:
github-actions[bot]
2024-07-30 07:42:32 +00:00
Author: https://github.com/trflynn89
Commit: 657bbd1542
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/894
3 changed files with 5 additions and 4 deletions
|
@ -1719,9 +1719,10 @@ void HTMLParser::handle_in_body(HTMLToken& token)
|
|||
|
||||
// Otherwise, for each attribute on the token, check to see if the attribute is already present on the top element of the stack of open elements.
|
||||
// If it is not, add the attribute and its corresponding value to that element.
|
||||
auto& top_element = m_stack_of_open_elements.first();
|
||||
token.for_each_attribute([&](auto& attribute) {
|
||||
if (!current_node().has_attribute(attribute.local_name))
|
||||
current_node().append_attribute(attribute.local_name, attribute.value);
|
||||
if (!top_element.has_attribute(attribute.local_name))
|
||||
top_element.append_attribute(attribute.local_name, attribute.value);
|
||||
return IterationDecision::Continue;
|
||||
});
|
||||
return;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue