mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 20:27:45 +00:00
LibWeb: Fix typo in CSS::Display::is_outside_and_inside() name
This commit is contained in:
parent
be4913c1fb
commit
de5de4d99a
3 changed files with 14 additions and 14 deletions
|
@ -283,7 +283,7 @@ void TreeBuilder::for_each_in_tree_with_inside_display(NodeWithStyle& root, Call
|
|||
{
|
||||
root.for_each_in_inclusive_subtree_of_type<Box>([&](auto& box) {
|
||||
auto const& display = box.computed_values().display();
|
||||
if (display.it_outside_and_inside() && display.inside() == inside)
|
||||
if (display.is_outside_and_inside() && display.inside() == inside)
|
||||
callback(box);
|
||||
return IterationDecision::Continue;
|
||||
});
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue