diff options
author | Timothy Flynn <trflynn89@pm.me> | 2022-11-16 07:15:09 -0500 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2022-11-16 17:23:56 +0000 |
commit | 159dcb950718ad5784a3172ec9fbefdb8e5d60d6 (patch) | |
tree | 0529c0a57366a9f50a24812592b743f37b8bfc79 /Userland/Libraries | |
parent | 0e949040349b370cf44cf6152f4d2fe97fee389c (diff) | |
download | serenity-159dcb950718ad5784a3172ec9fbefdb8e5d60d6.zip |
LibWeb: Fix typo in WebDriver section comment
Diffstat (limited to 'Userland/Libraries')
-rw-r--r-- | Userland/Libraries/LibWeb/WebDriver/Client.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibWeb/WebDriver/Client.h b/Userland/Libraries/LibWeb/WebDriver/Client.h index b72a244a35..e9b203615e 100644 --- a/Userland/Libraries/LibWeb/WebDriver/Client.h +++ b/Userland/Libraries/LibWeb/WebDriver/Client.h @@ -74,7 +74,7 @@ public: virtual Response get_element_rect(Parameters parameters, JsonValue payload) = 0; virtual Response is_element_enabled(Parameters parameters, JsonValue payload) = 0; - // 13. https://w3c.github.io/webdriver/#document, https://w3c.github.io/webdriver/#get-page-source + // 13. Document, https://w3c.github.io/webdriver/#document virtual Response get_source(Parameters parameters, JsonValue payload) = 0; virtual Response execute_script(Parameters parameters, JsonValue payload) = 0; virtual Response execute_async_script(Parameters parameters, JsonValue payload) = 0; |