diff options
author | Alan Jeffrey <ajeffrey@mozilla.com> | 2016-05-17 13:27:45 -0500 |
---|---|---|
committer | Alan Jeffrey <ajeffrey@mozilla.com> | 2016-05-20 09:20:45 -0500 |
commit | e2203f81d31bb865e9d73765de33c87178fa2d14 (patch) | |
tree | 5354083f72d8a22fbe7668186382b34eea8be3ad /components/script/script_thread.rs | |
parent | 5acf0f9a0515c8358b3170f8d9a117c50b41bd7d (diff) | |
download | servo-e2203f81d31bb865e9d73765de33c87178fa2d14.tar.gz servo-e2203f81d31bb865e9d73765de33c87178fa2d14.zip |
Made SetWindowSize synchronous.
Diffstat (limited to 'components/script/script_thread.rs')
-rw-r--r-- | components/script/script_thread.rs | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/components/script/script_thread.rs b/components/script/script_thread.rs index e8c87629b06..c791000cae4 100644 --- a/components/script/script_thread.rs +++ b/components/script/script_thread.rs @@ -1016,10 +1016,6 @@ impl ScriptThread { webdriver_handlers::handle_get_frame_id(&context, pipeline_id, frame_id, reply), WebDriverScriptCommand::GetUrl(reply) => webdriver_handlers::handle_get_url(&context, pipeline_id, reply), - WebDriverScriptCommand::GetWindowSize(reply) => - webdriver_handlers::handle_get_window_size(&context, pipeline_id, reply), - WebDriverScriptCommand::SetWindowSize(size, reply) => - webdriver_handlers::handle_set_window_size(&context, pipeline_id, size, reply), WebDriverScriptCommand::IsEnabled(element_id, reply) => webdriver_handlers::handle_is_enabled(&context, pipeline_id, element_id, reply), WebDriverScriptCommand::IsSelected(element_id, reply) => |