mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-10 13:00:29 +03:00
e6fc35897f
WebDriver, for example, will want to create new tabs without activating them.
17 lines
197 B
C++
17 lines
197 B
C++
/*
|
|
* Copyright (c) 2023, Tim Flynn <trflynn89@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
namespace Web::HTML {
|
|
|
|
enum class ActivateTab {
|
|
Yes,
|
|
No,
|
|
};
|
|
|
|
}
|