1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 23:17:45 +00:00

Everywhere: Run clang-format

This commit is contained in:
Idan Horowitz 2022-04-01 20:58:27 +03:00 committed by Linus Groh
parent 0376c127f6
commit 086969277e
1665 changed files with 8479 additions and 8479 deletions

View file

@ -343,7 +343,7 @@ static bool is_table_track_group(CSS::Display display)
|| display.is_table_column_group();
}
static bool is_not_proper_table_child(const Node& node)
static bool is_not_proper_table_child(Node const& node)
{
if (!node.has_style())
return true;
@ -351,7 +351,7 @@ static bool is_not_proper_table_child(const Node& node)
return !is_table_track_group(display) && !is_table_track(display) && !display.is_table_caption();
}
static bool is_not_table_row(const Node& node)
static bool is_not_table_row(Node const& node)
{
if (!node.has_style())
return true;
@ -359,7 +359,7 @@ static bool is_not_table_row(const Node& node)
return !display.is_table_row();
}
static bool is_not_table_cell(const Node& node)
static bool is_not_table_cell(Node const& node)
{
if (!node.has_style())
return true;