diff options
author | Pyfisch <pyfisch@gmail.com> | 2018-11-11 21:57:45 +0100 |
---|---|---|
committer | Pyfisch <pyfisch@gmail.com> | 2018-11-11 21:57:45 +0100 |
commit | 2143657e0331df9ef8fdedd7b653aca763e0539c (patch) | |
tree | 6bdf25ddd274cd56c695168940dc3d30fa4ec206 /components/script_traits | |
parent | b60006ae11485e432308cbecd310ff19119de5e3 (diff) | |
download | servo-2143657e0331df9ef8fdedd7b653aca763e0539c.tar.gz servo-2143657e0331df9ef8fdedd7b653aca763e0539c.zip |
Use keyboard-types::webdriver::send_keys
This improves the quality of KeyboardEvents
sent by WebDriver. Now key, code, location and
modifiers are set according to spec.
CompositionEvents are discarded as servo
does not handle them at all.
Diffstat (limited to 'components/script_traits')
-rw-r--r-- | components/script_traits/Cargo.toml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/script_traits/Cargo.toml b/components/script_traits/Cargo.toml index 3b8430e4922..3faaeec0de9 100644 --- a/components/script_traits/Cargo.toml +++ b/components/script_traits/Cargo.toml @@ -22,7 +22,7 @@ http = "0.1" hyper = "0.12" hyper_serde = "0.9" ipc-channel = "0.11" -keyboard-types = {version = "0.4.2-servo", features = ["serde"]} +keyboard-types = "0.4.3" libc = "0.2" malloc_size_of = { path = "../malloc_size_of" } malloc_size_of_derive = { path = "../malloc_size_of_derive" } |