1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 05:37:43 +00:00

LibWeb: Fix typo in CSS::Display::is_outside_and_inside() name

This commit is contained in:
Andreas Kling 2022-04-13 01:03:40 +02:00
parent be4913c1fb
commit de5de4d99a
3 changed files with 14 additions and 14 deletions

View file

@ -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;
});