summaryrefslogtreecommitdiff
path: root/Userland/Services
diff options
context:
space:
mode:
authorTimothy Flynn <trflynn89@pm.me>2022-11-02 10:19:45 -0400
committerLinus Groh <mail@linusgroh.de>2022-11-02 15:41:19 +0000
commit7561308af18f15394be458a79984be09a4115600 (patch)
treeabd116814a7e6b3275f1e3ad7f778940417b6d62 /Userland/Services
parent0ce854cf73aba38f36b34c33d29e8a45854deb96 (diff)
downloadserenity-7561308af18f15394be458a79984be09a4115600.zip
WebDriver: Convert a couple tabs to spaces
Diffstat (limited to 'Userland/Services')
-rw-r--r--Userland/Services/WebDriver/Client.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/Userland/Services/WebDriver/Client.cpp b/Userland/Services/WebDriver/Client.cpp
index d0957c0359..939db6b10e 100644
--- a/Userland/Services/WebDriver/Client.cpp
+++ b/Userland/Services/WebDriver/Client.cpp
@@ -564,7 +564,7 @@ ErrorOr<JsonValue, WebDriverError> Client::handle_find_elements(Vector<StringVie
}
// 12.3.4 Find Element From Element, https://w3c.github.io/webdriver/#dfn-find-element-from-element
-// POST /session/{session id}/element/{element id}/element
+// POST /session/{session id}/element/{element id}/element
ErrorOr<JsonValue, WebDriverError> Client::handle_find_element_from_element(Vector<StringView> const& parameters, JsonValue const& payload)
{
dbgln_if(WEBDRIVER_DEBUG, "Handling POST /session/<session_id>/element/<element_id>/element");
@@ -594,7 +594,7 @@ ErrorOr<JsonValue, WebDriverError> Client::handle_get_element_attribute(Vector<S
}
// 12.4.3 Get Element Property, https://w3c.github.io/webdriver/#dfn-get-element-property
-// GET /session/{session id}/element/{element id}/property/{name}
+// GET /session/{session id}/element/{element id}/property/{name}
ErrorOr<JsonValue, WebDriverError> Client::handle_get_element_property(Vector<StringView> const& parameters, JsonValue const& payload)
{
dbgln_if(WEBDRIVER_DEBUG, "Handling GET /session/<session_id>/element/<element_id>/property/<name>");