Update web-platform-tests to revision d8b8e0b8efe993a37404d6c6fc75e16fdc16b7d8

This commit is contained in:
WPT Sync Bot 2018-10-25 21:32:39 -04:00
parent abc0f50d20
commit e07315e6af
221 changed files with 7334 additions and 774 deletions

View file

@ -0,0 +1,11 @@
---
layout: page
title: Email Filters
order: 3
---
See the [GitHub support page](https://help.github.com/articles/about-email-notifications/)
for how to filter certain types of email notifications. However, the most
useful `Cc` email address is not listed on that page:
`review_requested@noreply.github.com` is for when you are added as a reviewer
on a pull request.

View file

@ -20,10 +20,9 @@ context (and not therefore in any frame or window opened from it).
### action_sequence
Usage: `test_driver.action_sequence(actions)`
* `actions`: <[Array]<[Object]>> an array of Action objects`
* `action`: <[Object]> A single action. See [spec](https://www.w3.org/TR/webdriver/#actions) for format
* `actions`: an array of `Action` objects
This function causes a sequence of actions to be sent to the browser. It is based of the [WebDriver API](https://www.w3.org/TR/webdriver/#actions).
This function causes a sequence of actions to be sent to the browser. It is based of the [WebDriver API](https://w3c.github.io/webdriver/#actions).
The action can be a keyboard action, a pointer action or a pause. It returns a `Promise` that
resolves after the actions have been sent or rejects if an error was thrown.