Move box_shadow_inset_bg.html to wpt reftests.

This commit is contained in:
Corey Farwell 2015-10-22 09:16:45 -04:00
parent 8cb1aa0d67
commit 4116aa5e18
4 changed files with 25 additions and 1 deletions

View file

@ -779,6 +779,18 @@
"url": "/_mozilla/css/border_spacing_a.html"
}
],
"css/box_shadow_inset_bg.html": [
{
"path": "css/box_shadow_inset_bg.html",
"references": [
[
"/_mozilla/css/box_shadow_inset_bg_ref.html",
"=="
]
],
"url": "/_mozilla/css/box_shadow_inset_bg.html"
}
],
"css/box_shadow_paint_order_a.html": [
{
"path": "css/box_shadow_paint_order_a.html",
@ -5208,6 +5220,18 @@
"url": "/_mozilla/css/border_spacing_a.html"
}
],
"css/box_shadow_inset_bg.html": [
{
"path": "css/box_shadow_inset_bg.html",
"references": [
[
"/_mozilla/css/box_shadow_inset_bg_ref.html",
"=="
]
],
"url": "/_mozilla/css/box_shadow_inset_bg.html"
}
],
"css/box_shadow_paint_order_a.html": [
{
"path": "css/box_shadow_paint_order_a.html",

View file

@ -0,0 +1,12 @@
<link rel='match' href='box_shadow_inset_bg_ref.html'>
<div></div>
<style>
div {
width: 100px;
height: 100px;
box-shadow: inset 0 20px 0 0 red;
background-color: rgba(0,0,0,0.7);
}
</style>

View file

@ -0,0 +1,16 @@
<div><span></span></div>
<style>
div {
width: 100px;
height: 100px;
background-color: rgba(0,0,0,0.7);
}
span {
background-color: red;
width: 100px;
height: 20px;
display: block;
}
</style>