aboutsummaryrefslogtreecommitdiffstats
path: root/components/webdriver_server
Commit message (Collapse)AuthorAgeFilesLines
...
* Remove empty lines following braces.Josh Matthews2016-05-271-1/+0
|
* Report use statements that use {} with only one entryCullen Rhodes2016-05-271-1/+1
|
* Use CompositorMsg from script_traits.Ms2ger2016-05-242-3/+3
|
* Responding to review comments.Alan Jeffrey2016-05-201-10/+10
|
* Added a timeout to SetWindowSize.Alan Jeffrey2016-05-201-5/+17
|
* Made SetWindowSize synchronous.Alan Jeffrey2016-05-201-13/+15
|
* Implemented webdriver SetWindowSize.Alan Jeffrey2016-05-202-1/+16
|
* Auto merge of #11146 - mbrubeck:always-be-updating, r=metajackbors-servo2016-05-121-1/+1
|\ | | | | | | | | | | | | | | Update image, hyper, gleam, flate2, threadpool, string_cache, num_cpus <!-- 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/11146) <!-- Reviewable:end -->
| * Update image, hyper, gleam, flate2, threadpool, string_cache, num_cpusMatt Brubeck2016-05-111-1/+1
| |
* | Auto merge of #11140 - ↵bors-servo2016-05-121-24/+15
|\ \ | |/ |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | asajeffrey:webdriver-pipeline-wait-for-document-ready, r=jgraham When webdriver is getting a pipeline id, it should wait for the pipeline document to be ready Thank you for contributing to Servo! Please add an `X` inside each `[ ]` when the step is complete, and replace `__` with appropriate data: - [X] `./mach build` does not report any errors - [X] `./mach test-tidy` does not report any errors - [X] These changes fix #11117 (github issue number if applicable). Either: - [ ] There are tests for these changes OR - [X] These changes do not require tests because they only impact webdriver 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/11140) <!-- Reviewable:end -->
| * When webdriver is getting a pipeline id, it should wait for the pipeline ↵Alan Jeffrey2016-05-111-24/+15
| | | | | | | | document to be ready.
* | Added delete session command.Alan Jeffrey2016-05-101-0/+8
|/
* Simplify TOML syntaxSimon Sapin2016-04-261-15/+5
| | | | | | | | * Sections like `[dependencies.foo]` can be entries in a `[dependencies]` section with the `{key = value}` syntax. * Per-target dependencies can be expressed with more general `cfg(…)` conditions instead of exact target triples: https://github.com/rust-lang/cargo/pull/2328
* Add referrer policy pass-through and referrer header logicRebecca2016-04-251-1/+1
| | | | | | | add pass-through from doc to http-loader for referrer_policy, ref_URL add logic for setting referer header add script pass-through for referrer add unit tests for setting referer header
* Upgrade to rust-url 1.0 and hyper 0.9Simon Sapin2016-04-232-4/+4
|
* Remove references to unused crates.Zbynek Winkler2016-04-221-2/+0
| | | | The cleanup is based on info from using "-W unused-extern-crates".
* Update to byteorder 0.5Saurav Sachidanand2016-04-131-1/+1
|
* Update uuid.Ms2ger2016-04-071-1/+1
|
* Update webdriver.Ms2ger2016-04-062-2/+2
|
* Deny unsafe code in more crates.Ms2ger2016-03-181-0/+2
|
* Bump serde to 0.7Anthony Ramine2016-03-171-4/+2
|
* Update log to 0.3.5Anthony Ramine2016-03-161-1/+1
|
* Bump url to 0.5.7Anthony Ramine2016-03-091-1/+1
|
* Bump regex and regex-syntaxAnthony Ramine2016-03-051-1/+1
|
* Indicate components should not be published to crates.io.Corey Farwell2016-03-031-0/+1
| | | | http://doc.crates.io/manifest.html#the-publish--field-optional
* Use piston_image instead of stb_image for decoding JPEGsUlf Nilsson2016-03-021-1/+1
| | | | Bump image to 0.7
* Macro for boilerplate code in webdriver handle_*Daniel Robertson2016-02-261-68/+33
| | | | | Add a macro for the boilerplate code that appears in most of Handler's methods handling a WebDriverScriptCommand.
* Implement GetElementRect webdriver commandDaniel Robertson2016-02-241-1/+22
| | | | Implement the webdriver Get Element Rect command
* Bump url to 0.5.5Anthony Ramine2016-02-131-1/+1
|
* Say farewell to in-tree HeapSizeOfAnthony Ramine2016-02-041-1/+1
|
* Update rust-urlKeith Yeung2016-02-021-1/+1
|
* task -> threadrohan.prinja2016-01-101-1/+1
|
* Use Url.join instead of UrlParser.base_url(...).parse (#9002)Mathieu Agopian2015-12-181-1/+1
|
* Fix warning: Stop to use deprecated 'SocketAddr::new'Tetsuharu OHZEKI2015-12-111-3/+4
|
* Moved CompositorMsg enum into compositing crate.Beomjin Kim2015-12-112-1/+5
| | | | | | | moved from components/msg/constellation_msg.rs to components/compositing/lib.rs dependencies on compositing crate added in ports/cef/Cargo.lock
* Auto merge of #8705 - jsanders:fix-sleep-ms-deprecations, ↵bors-servo2015-11-301-4/+5
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | r=metajack,Wafflespeanut Use thread::sleep instead of deprecated sleep_ms Similarly, change one instance of `thread::park_timeout_ms`. Fixes #8694 <!-- Reviewable:start --> [<img src="https://reviewable.io/review_button.png" height=40 alt="Review on Reviewable"/>](https://reviewable.io/reviews/servo/servo/8705) <!-- Reviewable:end -->
| * Use thread::sleep instead of deprecated sleep_msJames Sanders2015-11-291-4/+5
| | | | | | | | | | | | Similarly, change one instance of `thread::park_timeout_ms`. Fixes #8694
* | Auto merge of #8661 - craftytrickster:8623/some-webdriver-commands, r=jgrahambors-servo2015-11-301-1/+55
|\ \ | |/ |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | Webdriver - GetWindowSize/IsEnabled/IsSelected Added handlers for https://github.com/servo/servo/issues/8623: GetWindowSize IsEnabled(WebElement) IsSelected(WebElement) I am not sure how to actually verify my webdriver code works, if someone can give advice I would make the necessary changes. Thanks! <!-- Reviewable:start --> [<img src="https://reviewable.io/review_button.png" height=40 alt="Review on Reviewable"/>](https://reviewable.io/reviews/servo/servo/8661) <!-- Reviewable:end -->
| * Removed duplicate webdriver_traits file and added webdriver handler for ↵David Raifaizen2015-11-291-1/+55
| | | | | | | | GetWindowSize, IsSelected and IsEnabled
* | Auto merge of #8692 - GuillaumeGomez:patch-1, r=Wafflespeanutbors-servo2015-11-281-2/+2
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | Ensure crate are alphabetically sorted cc @nox <!-- Reviewable:start --> [<img src="https://reviewable.io/review_button.png" height=40 alt="Review on Reviewable"/>](https://reviewable.io/reviews/servo/servo/8692) <!-- Reviewable:end -->
| * | Add check up on extern crate order and sort extern crates alphabeticallyGuillaume Gomez2015-11-281-2/+2
| | |
* | | Upgrade to rustc 1.6.0-nightly (d5fde83ae 2015-11-12)Manish Goregaokar2015-11-271-6/+3
|/ / | | | | | | … and libc 0.2 and many other dependencies
* | adding tidy rule to warn against use of &String and refactoring instances of ↵jmr02015-11-251-4/+4
| | | | | | | | &String in codebase
* | Update `ipc-channel` to pick up the improved error reporting.Patrick Walton2015-11-231-1/+1
|/ | | | Intended to help diagnose intermittent failures.
* Add support for getting an element's computed style through WebDriver.James Graham2015-11-201-0/+16
|
* compositing: Split Servo up into multiple sandboxed processes.Patrick Walton2015-11-191-41/+24
| | | | | Multiprocess mode is enabled with the `-M` switch, and sandboxing is enabled with the `-S` switch.
* Auto merge of #8564 - jgraham:webdriver_attr, r=Ms2gerbors-servo2015-11-191-0/+17
|\ | | | | | | | | | | | | | | | | | | | | | | Implement Get Element Attribute WebDriver command This intentionally doesn't implement the special handling for boolean attributes yet, since that requires some kind of exhaustive list of all such attributes <!-- Reviewable:start --> [<img src="https://reviewable.io/review_button.png" height=40 alt="Review on Reviewable"/>](https://reviewable.io/reviews/servo/servo/8564) <!-- Reviewable:end -->
| * Implement Get Element Attribute WebDriver commandJames Graham2015-11-181-0/+17
| |
* | Split ConstellationMsg into ScriptMsg and CompositorMsgKeith Yeung2015-11-161-5/+4
|/
* Implement support for WebDriver send keys command.James Graham2015-11-162-1/+218
| | | | | | Supports sending keys to an element. The specification here is still rather unfinished so the error handling and so on in this code will need iteration as it becomes clearer what the expected behaviour is.