Move filter_opacity_a.html to wpt reftests.

This commit is contained in:
Corey Farwell 2015-10-22 09:16:45 -04:00
parent 0439894c7c
commit 02a35f5540
4 changed files with 25 additions and 1 deletions

View file

@ -971,6 +971,18 @@
"url": "/_mozilla/css/filter_inline_a.html"
}
],
"css/filter_opacity_a.html": [
{
"path": "css/filter_opacity_a.html",
"references": [
[
"/_mozilla/css/filter_opacity_ref.html",
"=="
]
],
"url": "/_mozilla/css/filter_opacity_a.html"
}
],
"css/filter_sepia_a.html": [
{
"path": "css/filter_sepia_a.html",
@ -5376,6 +5388,18 @@
"url": "/_mozilla/css/filter_inline_a.html"
}
],
"css/filter_opacity_a.html": [
{
"path": "css/filter_opacity_a.html",
"references": [
[
"/_mozilla/css/filter_opacity_ref.html",
"=="
]
],
"url": "/_mozilla/css/filter_opacity_a.html"
}
],
"css/filter_sepia_a.html": [
{
"path": "css/filter_sepia_a.html",

View file

@ -0,0 +1,16 @@
<!DOCTYPE html>
<html>
<head>
<link rel='match' href='filter_opacity_ref.html'>
<style>
img {
filter: opacity(0.5);
display: block;
}
</style>
</head>
<body>
<img src=test.jpeg>
</body>
</html>

View file

@ -0,0 +1,16 @@
<!DOCTYPE html>
<html>
<head>
<style>
img {
opacity: 0.5;
display: block;
}
</style>
</head>
<body>
<img src=test.jpeg>
</body>
</html>