1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 11:37:34 +00:00

LibWeb+WebContent: Add plumbing for 'webdriver-active flag'

This commit is contained in:
Linus Groh 2022-10-12 23:49:23 +02:00 committed by Andreas Kling
parent 4c6f830a35
commit 3f24a444f9
8 changed files with 31 additions and 1 deletions

View file

@ -1,5 +1,6 @@
/*
* Copyright (c) 2020-2021, Andreas Kling <kling@serenityos.org>
* Copyright (c) 2021-2022, Linus Groh <linusg@serenityos.org>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
@ -67,6 +68,9 @@ public:
bool is_scripting_enabled() const { return m_is_scripting_enabled; }
void set_is_scripting_enabled(bool b) { m_is_scripting_enabled = b; }
bool is_webdriver_active() const { return m_is_webdriver_active; }
void set_is_webdriver_active(bool b) { m_is_webdriver_active = b; }
private:
PageClient& m_client;
@ -77,6 +81,10 @@ private:
bool m_same_origin_policy_enabled { false };
bool m_is_scripting_enabled { true };
// https://w3c.github.io/webdriver/#dfn-webdriver-active-flag
// The webdriver-active flag is set to true when the user agent is under remote control. It is initially false.
bool m_is_webdriver_active { false };
};
class PageClient {