Update web-platform-tests to revision 6ea3164d34a632b16b857d7474985b93acd8de11

This commit is contained in:
WPT Sync Bot 2020-12-11 08:19:25 +00:00
parent 3342711f68
commit c67c5d4fb8
284 changed files with 3792 additions and 1407 deletions

View file

@ -153,3 +153,15 @@ declare that they need access to the QUIC server:
The QUIC server is not yet enabled by default, so QUIC tests will be skipped
unless `--enable-quic` is specified to `./wpt run`.
### Test Features specified as query params
Alternatively to specifying [Test Features](file-names.md#test-features) in
the test filename, they can be specified by setting the `wpt_flags` in the
[test variant](testharness.html#variants). For example, the following variant
will be loaded over HTTPS:
```html
<meta name="variant" content="?wpt_flags=https">
```
`https`, `h2` and `www` features are supported by `wpt_flags`.

View file

@ -37,9 +37,8 @@ command](https://w3c.github.io/webdriver/#element-click):
```python
from tests.support.asserts import assert_success
from tests.support.inline import inline
def test_null_response_value(session):
def test_null_response_value(session, inline):
# The high-level API is used to set up a document and locate a click target
session.url = inline("<p>foo")
element = session.find.css("p", all=False)