/* * 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; // Declaring an icon prevents the spec's fallback /favicon.ico fetch. The empty // data URL is local and intentionally does not decode as an icon. constexpr inline auto NO_FALLBACK_FAVICON_LINK = R"~~~( )~~~"sv; constexpr inline auto ERROR_HTML_FOOTER = R"~~~( )~~~"sv; constexpr inline auto ERROR_SVG = R"~~~( )~~~"sv; constexpr inline auto CRASH_ERROR_SVG = R"~~~( )~~~"sv; }