mirror of
https://github.com/servo/servo.git
synced 2025-08-10 16:05:43 +01:00
Update web-platform-tests to revision e87f38097902e16348d4e17f4fe3bc2d0112bff1
This commit is contained in:
parent
2f8fa32e91
commit
db5631a086
381 changed files with 11610 additions and 4232 deletions
|
@ -41,3 +41,5 @@ exclude:
|
|||
- vendor/bundle/
|
||||
- .bundle/
|
||||
- OWNERS
|
||||
sass:
|
||||
sass_dir: assets/
|
||||
|
|
|
@ -1,5 +1,7 @@
|
|||
<header class="site-header" role="banner">
|
||||
|
||||
<a class="github-fork-ribbon left-top" href="https://github.com/w3c/web-platform-tests/blob/master/docs/{{ page.path }}" data-ribbon="Edit on GitHub">Edit on GitHub</a>
|
||||
|
||||
<div class="wrapper">
|
||||
|
||||
<a class="site-title" href="{{ "/" | relative_url}}">{{ site.title | escape }}</a>
|
||||
|
|
|
@ -7,8 +7,10 @@ To run WPT on Chrome on an Android device, some additional set up is required.
|
|||
First of all, as usual Android development, we need to have `adb` and be able to
|
||||
connect to the device.
|
||||
|
||||
Furthermore, until we find a better way, we need to root the Android device and
|
||||
update the /etc/hosts file to include
|
||||
## Hosts
|
||||
|
||||
Until we find a better way, we need to root the Android device and update the
|
||||
/etc/hosts file to include
|
||||
|
||||
```
|
||||
127.0.0.1 web-platform.test
|
||||
|
@ -20,7 +22,23 @@ update the /etc/hosts file to include
|
|||
0.0.0.0 nonexistent-origin.web-platform.test
|
||||
```
|
||||
|
||||
After this, we may run wpt with the `chrome_android` product
|
||||
## CA certificate
|
||||
|
||||
In order to run HTTPS tests, we need to add
|
||||
[WPT's CA](https://github.com/w3c/web-platform-tests/blob/master/tools/certs/cacert.pem)
|
||||
to the phone. First, convert the certificate from PEM to CRT:
|
||||
|
||||
```
|
||||
openssl x509 -outform der -in tools/certs/cacert.pem -out cacert.crt
|
||||
```
|
||||
|
||||
Then copy `cacert.crt` to your phone's external storage (preferably to
|
||||
Downloads/ as it'll be easier to find). Open Settings -> Security & location ->
|
||||
Encryption & credentials -> Install from storage. Find and install `cacert.crt`.
|
||||
(The setting entries might be slightly different based your Android version.)
|
||||
|
||||
|
||||
Finally, we may run wpt with the `chrome_android` product
|
||||
|
||||
```
|
||||
./wpt run chrome_android [test_list]
|
||||
|
|
124
tests/wpt/web-platform-tests/docs/assets/gh-fork-ribbon.scss
Normal file
124
tests/wpt/web-platform-tests/docs/assets/gh-fork-ribbon.scss
Normal file
|
@ -0,0 +1,124 @@
|
|||
/*!
|
||||
* "Fork me on GitHub" CSS ribbon v0.2.2 | MIT License
|
||||
* https://github.com/simonwhitaker/github-fork-ribbon-css
|
||||
*/
|
||||
|
||||
.github-fork-ribbon {
|
||||
width: 12.1em;
|
||||
height: 12.1em;
|
||||
position: absolute;
|
||||
overflow: hidden;
|
||||
top: 0;
|
||||
right: 0;
|
||||
z-index: 9999;
|
||||
pointer-events: none;
|
||||
font-size: 13px;
|
||||
text-decoration: none;
|
||||
text-indent: -999999px;
|
||||
}
|
||||
|
||||
.github-fork-ribbon.fixed {
|
||||
position: fixed;
|
||||
}
|
||||
|
||||
.github-fork-ribbon:hover, .github-fork-ribbon:active {
|
||||
background-color: rgba(0, 0, 0, 0.0);
|
||||
}
|
||||
|
||||
.github-fork-ribbon:before, .github-fork-ribbon:after {
|
||||
/* The right and left classes determine the side we attach our banner to */
|
||||
position: absolute;
|
||||
display: block;
|
||||
width: 15.38em;
|
||||
height: 1.54em;
|
||||
|
||||
top: 3.23em;
|
||||
right: -3.23em;
|
||||
|
||||
-webkit-box-sizing: content-box;
|
||||
-moz-box-sizing: content-box;
|
||||
box-sizing: content-box;
|
||||
|
||||
-webkit-transform: rotate(45deg);
|
||||
-moz-transform: rotate(45deg);
|
||||
-ms-transform: rotate(45deg);
|
||||
-o-transform: rotate(45deg);
|
||||
transform: rotate(45deg);
|
||||
}
|
||||
|
||||
.github-fork-ribbon:before {
|
||||
content: "";
|
||||
|
||||
/* Add a bit of padding to give some substance outside the "stitching" */
|
||||
padding: .38em 0;
|
||||
|
||||
/* Set the base colour */
|
||||
background-color: #a00;
|
||||
|
||||
/* Set a gradient: transparent black at the top to almost-transparent black at the bottom */
|
||||
background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.15)));
|
||||
background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.15));
|
||||
background-image: -moz-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.15));
|
||||
background-image: -ms-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.15));
|
||||
background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.15));
|
||||
background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.15));
|
||||
|
||||
/* Add a drop shadow */
|
||||
-webkit-box-shadow: 0 .15em .23em 0 rgba(0, 0, 0, 0.5);
|
||||
-moz-box-shadow: 0 .15em .23em 0 rgba(0, 0, 0, 0.5);
|
||||
box-shadow: 0 .15em .23em 0 rgba(0, 0, 0, 0.5);
|
||||
|
||||
pointer-events: auto;
|
||||
}
|
||||
|
||||
.github-fork-ribbon:after {
|
||||
/* Set the text from the data-ribbon attribute */
|
||||
content: attr(data-ribbon);
|
||||
|
||||
/* Set the text properties */
|
||||
color: #fff;
|
||||
font: 700 1em "Helvetica Neue", Helvetica, Arial, sans-serif;
|
||||
line-height: 1.54em;
|
||||
text-decoration: none;
|
||||
text-shadow: 0 -.08em rgba(0, 0, 0, 0.5);
|
||||
text-align: center;
|
||||
text-indent: 0;
|
||||
|
||||
/* Set the layout properties */
|
||||
padding: .15em 0;
|
||||
margin: .15em 0;
|
||||
|
||||
/* Add "stitching" effect */
|
||||
border-width: .08em 0;
|
||||
border-style: dotted;
|
||||
border-color: #fff;
|
||||
border-color: rgba(255, 255, 255, 0.7);
|
||||
}
|
||||
|
||||
.github-fork-ribbon.left-top, .github-fork-ribbon.left-bottom {
|
||||
right: auto;
|
||||
left: 0;
|
||||
}
|
||||
|
||||
.github-fork-ribbon.left-bottom, .github-fork-ribbon.right-bottom {
|
||||
top: auto;
|
||||
bottom: 0;
|
||||
}
|
||||
|
||||
.github-fork-ribbon.left-top:before, .github-fork-ribbon.left-top:after, .github-fork-ribbon.left-bottom:before, .github-fork-ribbon.left-bottom:after {
|
||||
right: auto;
|
||||
left: -3.23em;
|
||||
}
|
||||
|
||||
.github-fork-ribbon.left-bottom:before, .github-fork-ribbon.left-bottom:after, .github-fork-ribbon.right-bottom:before, .github-fork-ribbon.right-bottom:after {
|
||||
top: auto;
|
||||
bottom: 3.23em;
|
||||
}
|
||||
|
||||
.github-fork-ribbon.left-top:before, .github-fork-ribbon.left-top:after, .github-fork-ribbon.right-bottom:before, .github-fork-ribbon.right-bottom:after {
|
||||
-webkit-transform: rotate(-45deg);
|
||||
-moz-transform: rotate(-45deg);
|
||||
-ms-transform: rotate(-45deg);
|
||||
-o-transform: rotate(-45deg);
|
||||
transform: rotate(-45deg);
|
||||
}
|
|
@ -164,3 +164,9 @@ nav.home {
|
|||
display: block !important;
|
||||
}
|
||||
}
|
||||
|
||||
@import "gh-fork-ribbon";
|
||||
|
||||
.github-fork-ribbon:before {
|
||||
background-color: $grey-color-dark;
|
||||
}
|
||||
|
|
|
@ -151,7 +151,7 @@ After your `hosts` file is configured, the servers will be locally accessible at
|
|||
http://web-platform.test:8000/<br>
|
||||
https://web-platform.test:8443/ *
|
||||
|
||||
\**See [Trusting Root CA](README.md#trusting-root-ca)*
|
||||
\**See [Trusting Root CA](https://github.com/w3c/web-platform-tests/blob/master/README.md#trusting-root-ca)*
|
||||
|
||||
## Running tests automatically
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue