/* * Copyright (c) 2026-present, the Ladybird developers. * * SPDX-License-Identifier: BSD-2-Clause */ #pragma once #include namespace WebView { // FIXME: Move these to an HTML file in Base/res/ladybird. constexpr inline auto ERROR_HTML_HEADER = R"~~~( Error!
{}

{}

)~~~"sv; constexpr inline auto ERROR_HTML_FOOTER = R"~~~( )~~~"sv; constexpr inline auto ERROR_SVG = R"~~~( )~~~"sv; constexpr inline auto CRASH_ERROR_SVG = R"~~~( )~~~"sv; }