Move box_shadow_blur_a.html to wpt reftests.

This commit is contained in:
Ms2ger 2015-10-27 14:00:13 +01:00
parent 5b08ac9ca9
commit f9930ab1fe
4 changed files with 25 additions and 1 deletions

View file

@ -863,6 +863,18 @@
"url": "/_mozilla/css/box_shadow_bg.html"
}
],
"css/box_shadow_blur_a.html": [
{
"path": "css/box_shadow_blur_a.html",
"references": [
[
"/_mozilla/css/box_shadow_blur_ref.html",
"!="
]
],
"url": "/_mozilla/css/box_shadow_blur_a.html"
}
],
"css/box_shadow_border_box_a.html": [
{
"path": "css/box_shadow_border_box_a.html",
@ -5436,6 +5448,18 @@
"url": "/_mozilla/css/box_shadow_bg.html"
}
],
"css/box_shadow_blur_a.html": [
{
"path": "css/box_shadow_blur_a.html",
"references": [
[
"/_mozilla/css/box_shadow_blur_ref.html",
"!="
]
],
"url": "/_mozilla/css/box_shadow_blur_a.html"
}
],
"css/box_shadow_border_box_a.html": [
{
"path": "css/box_shadow_border_box_a.html",

View file

@ -0,0 +1,19 @@
<head>
<!-- Tests that box-shadow blur does something. -->
<link rel=mismatch href=box_shadow_blur_ref.html>
<style>
section {
position: absolute;
width: 100px;
height: 100px;
top: 100px;
left: 100px;
border: solid black 1px;
box-shadow: 10px 10px 5px 0px;
}
</style>
</head>
<body>
<section></section>
</body>

View file

@ -0,0 +1,18 @@
<head>
<!-- Tests that box-shadow blur does something. -->
<style>
section {
position: absolute;
width: 100px;
height: 100px;
top: 100px;
left: 100px;
border: solid black 1px;
box-shadow: 10px 10px;
}
</style>
</head>
<body>
<section></section>
</body>