diff options
author | bors-servo <lbergstrom+bors@mozilla.com> | 2016-05-23 02:53:48 -0700 |
---|---|---|
committer | bors-servo <lbergstrom+bors@mozilla.com> | 2016-05-23 02:53:48 -0700 |
commit | 2063bde0a4dc512494e6548a036448ded3056762 (patch) | |
tree | 100f6fbe1d7877671d117985c35201bf3ab51dea /components/script/script_thread.rs | |
parent | 7cea4eb01ce3b84ca276ca417d933fb122005b51 (diff) | |
parent | 8797f6f3ec8bb49ad35d375fd8bb2fb62a3abc32 (diff) | |
download | servo-2063bde0a4dc512494e6548a036448ded3056762.tar.gz servo-2063bde0a4dc512494e6548a036448ded3056762.zip |
Auto merge of #11179 - asajeffrey:webdriver-resize-window, r=jgraham
Implemented webdriver SetWindowSize.
Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `__` with appropriate data:
- [X] `./mach build -d` does not report any errors
- [X] `./mach test-tidy` does not report any errors
- [X] These changes fix #10467 (github issue number if applicable).
Either:
- [ ] There are tests for these changes OR
- [X] These changes do not require tests because the new tests are in https://github.com/w3c/web-platform-tests/pull/3024
Pull requests that do not address these steps are welcome, but they will require additional verification as part of the review process.
<!-- Reviewable:start -->
---
This change is [<img src="https://reviewable.io/review_button.svg" height="35" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/11179)
<!-- Reviewable:end -->
Diffstat (limited to 'components/script/script_thread.rs')
-rw-r--r-- | components/script/script_thread.rs | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/components/script/script_thread.rs b/components/script/script_thread.rs index f7bb765651d..644f320f19e 100644 --- a/components/script/script_thread.rs +++ b/components/script/script_thread.rs @@ -1045,8 +1045,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::IsEnabled(element_id, reply) => webdriver_handlers::handle_is_enabled(&context, pipeline_id, element_id, reply), WebDriverScriptCommand::IsSelected(element_id, reply) => |