mirror of
https://github.com/RGBCube/serenity
synced 2025-05-14 08:24:58 +00:00

Eventually we should not need the layout tree for anything when painting and this code will only look at the paint tree. For now, this is just another step in that direction.
15 lines
267 B
C++
15 lines
267 B
C++
/*
|
|
* Copyright (c) 2023, the SerenityOS developers.
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <LibWeb/Painting/PaintContext.h>
|
|
|
|
namespace Web::Painting {
|
|
|
|
void paint_table_borders(PaintContext&, PaintableBox const& table_paintable);
|
|
|
|
}
|