Move box_shadow_spread_a.html to wpt reftests.

This commit is contained in:
Ms2ger 2015-11-03 17:51:51 +01:00
parent 3ac3085b18
commit b1a9a0650a
4 changed files with 25 additions and 1 deletions

View file

@ -947,6 +947,18 @@
"url": "/_mozilla/css/box_shadow_paint_order_a.html"
}
],
"css/box_shadow_spread_a.html": [
{
"path": "css/box_shadow_spread_a.html",
"references": [
[
"/_mozilla/css/box_shadow_spread_ref.html",
"=="
]
],
"url": "/_mozilla/css/box_shadow_spread_a.html"
}
],
"css/box_sizing_border_box_a.html": [
{
"path": "css/box_sizing_border_box_a.html",
@ -5706,6 +5718,18 @@
"url": "/_mozilla/css/box_shadow_paint_order_a.html"
}
],
"css/box_shadow_spread_a.html": [
{
"path": "css/box_shadow_spread_a.html",
"references": [
[
"/_mozilla/css/box_shadow_spread_ref.html",
"=="
]
],
"url": "/_mozilla/css/box_shadow_spread_a.html"
}
],
"css/box_sizing_border_box_a.html": [
{
"path": "css/box_sizing_border_box_a.html",

View file

@ -0,0 +1,18 @@
<head>
<!-- Tests that spread works. -->
<link rel=match href=box_shadow_spread_ref.html>
<style>
section {
position: absolute;
width: 100px;
height: 100px;
top: 100px;
left: 100px;
box-shadow: 0 0 0 25px;
}
</style>
</head>
<body>
<section></section>
</body>

View file

@ -0,0 +1,18 @@
<head>
<!-- Tests that spread works. -->
<style>
section {
position: absolute;
width: 100px;
height: 100px;
top: 75px;
left: 75px;
border: solid black 25px;
}
</style>
</head>
<body>
<section></section>
</body>