Move filter_inline_a.html to wpt reftests.

This commit is contained in:
Corey Farwell 2015-10-22 09:16:45 -04:00
parent bfbf881ca0
commit 49498fbda1
4 changed files with 25 additions and 1 deletions

View file

@ -791,6 +791,18 @@
"url": "/_mozilla/css/class-namespaces.html"
}
],
"css/filter_inline_a.html": [
{
"path": "css/filter_inline_a.html",
"references": [
[
"/_mozilla/css/filter_inline_ref.html",
"=="
]
],
"url": "/_mozilla/css/filter_inline_a.html"
}
],
"css/first_of_type_pseudo_a.html": [
{
"path": "css/first_of_type_pseudo_a.html",
@ -4980,6 +4992,18 @@
"url": "/_mozilla/css/class-namespaces.html"
}
],
"css/filter_inline_a.html": [
{
"path": "css/filter_inline_a.html",
"references": [
[
"/_mozilla/css/filter_inline_ref.html",
"=="
]
],
"url": "/_mozilla/css/filter_inline_a.html"
}
],
"css/first_of_type_pseudo_a.html": [
{
"path": "css/first_of_type_pseudo_a.html",

View file

@ -0,0 +1,19 @@
<!DOCTYPE html>
<html>
<head>
<link rel='match' href='filter_inline_ref.html'>
<style type="text/css">
.ex {
<!-- display: block; -->
-webkit-filter: opacity(25%);
-moz-filter: opacity(25%);
filter: opacity(25%);
}
</style>
</head>
<body>
<img class="ex" src="rust.png">
</body>
</html>

View file

@ -0,0 +1,18 @@
<!DOCTYPE html>
<html>
<head>
<style type="text/css">
.ex {
display: block;
-webkit-filter: opacity(25%);
-moz-filter: opacity(25%);
filter: opacity(25%);
}
</style>
</head>
<body>
<img class="ex" src="rust.png">
</body>
</html>