mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-10-31 21:30:58 +00:00
19 lines
381 B
C
19 lines
381 B
C
|
|
/*
|
||
|
|
* Copyright (c) 2022-2023, Linus Groh <linusg@serenityos.org>
|
||
|
|
* Copyright (c) 2024, Tim Flynn <trflynn89@ladybird.org>
|
||
|
|
*
|
||
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
||
|
|
*/
|
||
|
|
|
||
|
|
#pragma once
|
||
|
|
|
||
|
|
#include <LibJS/Runtime/Value.h>
|
||
|
|
#include <LibWeb/Forward.h>
|
||
|
|
#include <LibWeb/WebDriver/Response.h>
|
||
|
|
|
||
|
|
namespace Web::WebDriver {
|
||
|
|
|
||
|
|
Response json_clone(HTML::BrowsingContext const&, JS::Value);
|
||
|
|
|
||
|
|
}
|