Move filter_sepia_a.html to wpt reftests.

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

View file

@ -815,6 +815,18 @@
"url": "/_mozilla/css/filter_inline_a.html"
}
],
"css/filter_sepia_a.html": [
{
"path": "css/filter_sepia_a.html",
"references": [
[
"/_mozilla/css/filter_sepia_ref.html",
"=="
]
],
"url": "/_mozilla/css/filter_sepia_a.html"
}
],
"css/first_of_type_pseudo_a.html": [
{
"path": "css/first_of_type_pseudo_a.html",
@ -5028,6 +5040,18 @@
"url": "/_mozilla/css/filter_inline_a.html"
}
],
"css/filter_sepia_a.html": [
{
"path": "css/filter_sepia_a.html",
"references": [
[
"/_mozilla/css/filter_sepia_ref.html",
"=="
]
],
"url": "/_mozilla/css/filter_sepia_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_sepia_ref.html'>
<style>
section {
filter: sepia(100%);
display: block;
width: 100px;
height: 100px;
background: #ff00ff;
}
</style>
</head>
<body>
<section></section>
</body>
</html>

View file

@ -0,0 +1,17 @@
<!DOCTYPE html>
<html>
<head>
<style>
section {
display: block;
width: 100px;
height: 100px;
background: #938567;
}
</style>
</head>
<body>
<section></section>
</body>
</html>