mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-27 18:17:22 +02:00
16 lines
275 B
C++
16 lines
275 B
C++
/*
|
|
* Copyright (c) 2023, the SerenityOS developers.
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <LibWeb/Export.h>
|
|
|
|
namespace Web::Painting {
|
|
|
|
WEB_API void paint_table_borders(DisplayListRecordingContext&, PaintableBox const& table_paintable);
|
|
|
|
}
|