mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-26 17:55:07 +02:00
27 lines
573 B
C++
27 lines
573 B
C++
/*
|
|
* Copyright (c) 2026, The Ladybird Developers
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <AK/ByteBuffer.h>
|
|
#include <AK/StringBuilder.h>
|
|
#include <AK/StringView.h>
|
|
#include <AK/Types.h>
|
|
|
|
namespace TestWeb {
|
|
|
|
class TestWebView;
|
|
struct Test;
|
|
|
|
void maybe_attach_on_fail_fast_timeout(pid_t);
|
|
|
|
void append_timeout_diagnostics_to_stderr(StringBuilder&, TestWebView&, Test const&, size_t view_id);
|
|
void append_timeout_backtraces_to_stderr(StringBuilder&, TestWebView&, Test const&, size_t view_id);
|
|
|
|
ByteBuffer strip_sgr_sequences(StringView);
|
|
|
|
}
|