1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-30 18:08:12 +00:00

LibWeb: Rename element_before() => element_immediately_above()

This matches the spec terminology around the "stack of open elements".
This commit is contained in:
Andreas Kling 2022-02-14 22:24:10 +01:00
parent 6fe333607d
commit 5cdbea4ae0
3 changed files with 3 additions and 3 deletions

View file

@ -551,7 +551,7 @@ HTMLParser::AdjustedInsertionLocation HTMLParser::find_appropriate_place_for_ins
adjusted_insertion_location = { last_table.element->parent_node(), last_table.element };
} else {
// 6. Let previous element be the element immediately above last table in the stack of open elements.
auto previous_element = m_stack_of_open_elements.element_before(*last_table.element);
auto previous_element = m_stack_of_open_elements.element_immediately_above(*last_table.element);
// 7. Let adjusted insertion location be inside previous element, after its last child (if any).
adjusted_insertion_location = { previous_element, nullptr };