diff options
author | Fabrice Desré <fabrice@desre.org> | 2023-09-23 04:30:57 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-23 11:30:57 +0000 |
commit | 38c91b836a8dd8326f77ddceeb495b66f555ef36 (patch) | |
tree | a6fb0721c8b0009c26e5af0b3f153c06883fdbab /components/webdriver_server/capabilities.rs | |
parent | 2c3f7c015682738ed5f6963fe260661c86630e01 (diff) | |
download | servo-38c91b836a8dd8326f77ddceeb495b66f555ef36.tar.gz servo-38c91b836a8dd8326f77ddceeb495b66f555ef36.zip |
Dedupe ron and base64 (#30415)
Diffstat (limited to 'components/webdriver_server/capabilities.rs')
-rw-r--r-- | components/webdriver_server/capabilities.rs | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/components/webdriver_server/capabilities.rs b/components/webdriver_server/capabilities.rs index 50b0be26acb..477a3bfd34c 100644 --- a/components/webdriver_server/capabilities.rs +++ b/components/webdriver_server/capabilities.rs @@ -81,6 +81,41 @@ impl BrowserCapabilities for ServoCapabilities { ) -> Result<bool, WebDriverError> { todo!() } + + fn webauthn_virtual_authenticators( + &mut self, + _: &serde_json::Map<std::string::String, Value>, + ) -> Result<bool, WebDriverError> { + todo!() + } + + fn webauthn_extension_uvm( + &mut self, + _: &serde_json::Map<std::string::String, Value>, + ) -> Result<bool, WebDriverError> { + todo!() + } + + fn webauthn_extension_prf( + &mut self, + _: &serde_json::Map<std::string::String, Value>, + ) -> Result<bool, WebDriverError> { + todo!() + } + + fn webauthn_extension_large_blob( + &mut self, + _: &serde_json::Map<std::string::String, Value>, + ) -> Result<bool, WebDriverError> { + todo!() + } + + fn webauthn_extension_cred_blob( + &mut self, + _: &serde_json::Map<std::string::String, Value>, + ) -> Result<bool, WebDriverError> { + todo!() + } } fn get_platform_name() -> Option<String> { |