Update web-platform-tests to revision c9633200e9c3d5524dca096e8c23c8eb4a94e495

This commit is contained in:
WPT Sync Bot 2019-09-26 10:24:45 +00:00
parent 049527872e
commit 902c03b511
123 changed files with 2587 additions and 569 deletions

View file

@ -145,4 +145,5 @@ Additional browser-specific documentation:
chrome_android
android_webview
safari
webkitgtk_minibrowser
```

View file

@ -0,0 +1,32 @@
# WebKitGTK MiniBrowser
To be able to run tests with the WebKitGTK MiniBrowser you need the
following packages installed:
* Fedora: `webkit2gtk3-devel`
* Debian or Ubuntu: `webkit2gtk-driver`
The WebKitGTK MiniBrowser is not installed on the default binary path.
The `wpt` script will try to automatically locate it, but if you need
to run it manually you can find it on any of this paths:
* Fedora: `/usr/libexec/webkit2gtk-4.0/MiniBrowser`
* Debian or Ubuntu: `/usr/lib/x86_64-linux-gnu/webkit2gtk-4.0/MiniBrowser`
* Note: if the machine architecture is not `x86_64`, then it will be located
inside:
`/usr/lib/${TRIPLET}/webkit2gtk-4.0/MiniBrowser`
where `TRIPLET=$(gcc -dumpmachine)`
Known issues:
* On a docker container WebKitWebDriver fails to listen on localhost,
because the docker container doesn't provide an IPv6 localhost address.
To workaround this issue, manually tell it to only listen on IPv4 localhost
by passing this parameter to wpt run: `--webdriver-arg=--host=127.0.0.1`
Example:
```bash
./wpt run --webdriver-arg=--host=127.0.0.1 webkitgtk_minibrowser TESTS
```