Move jumpiness_a.html to wpt reftests.

This commit is contained in:
Corey Farwell 2015-10-16 21:10:53 -04:00
parent 39efcf7bae
commit 8bb3445565
4 changed files with 25 additions and 1 deletions

View file

@ -683,6 +683,18 @@
"url": "/_mozilla/css/flex_nochild.html"
}
],
"css/jumpiness_a.html": [
{
"path": "css/jumpiness_a.html",
"references": [
[
"/_mozilla/css/jumpiness_ref.html",
"=="
]
],
"url": "/_mozilla/css/jumpiness_a.html"
}
],
"css/layerization_z_order_a.html": [
{
"path": "css/layerization_z_order_a.html",
@ -3648,6 +3660,18 @@
"url": "/_mozilla/css/flex_nochild.html"
}
],
"css/jumpiness_a.html": [
{
"path": "css/jumpiness_a.html",
"references": [
[
"/_mozilla/css/jumpiness_ref.html",
"=="
]
],
"url": "/_mozilla/css/jumpiness_a.html"
}
],
"css/layerization_z_order_a.html": [
{
"path": "css/layerization_z_order_a.html",

View file

@ -0,0 +1,20 @@
<!DOCTYPE html>
<html>
<head>
<link rel='match' href='jumpiness_ref.html'>
<style>
body.hello {
text-decoration: underline;
}
</style>
</head>
<body>
a
<script>
setTimeout(function() {
document.body.classList.add('hello');
}, 0);
</script>
</body>
</html>

View file

@ -0,0 +1,15 @@
<!DOCTYPE html>
<html>
<head>
<style>
body {
text-decoration: underline;
}
</style>
</head>
<body>
a
</body>
</html>