mirror of
https://github.com/servo/servo.git
synced 2025-10-01 00:59:15 +01:00
Move box_shadow_default_color_a.html to wpt reftests.
This commit is contained in:
parent
f9930ab1fe
commit
c265c52939
4 changed files with 25 additions and 1 deletions
|
@ -887,6 +887,18 @@
|
|||
"url": "/_mozilla/css/box_shadow_border_box_a.html"
|
||||
}
|
||||
],
|
||||
"css/box_shadow_default_color_a.html": [
|
||||
{
|
||||
"path": "css/box_shadow_default_color_a.html",
|
||||
"references": [
|
||||
[
|
||||
"/_mozilla/css/box_shadow_default_color_ref.html",
|
||||
"=="
|
||||
]
|
||||
],
|
||||
"url": "/_mozilla/css/box_shadow_default_color_a.html"
|
||||
}
|
||||
],
|
||||
"css/box_shadow_inset_bg.html": [
|
||||
{
|
||||
"path": "css/box_shadow_inset_bg.html",
|
||||
|
@ -5472,6 +5484,18 @@
|
|||
"url": "/_mozilla/css/box_shadow_border_box_a.html"
|
||||
}
|
||||
],
|
||||
"css/box_shadow_default_color_a.html": [
|
||||
{
|
||||
"path": "css/box_shadow_default_color_a.html",
|
||||
"references": [
|
||||
[
|
||||
"/_mozilla/css/box_shadow_default_color_ref.html",
|
||||
"=="
|
||||
]
|
||||
],
|
||||
"url": "/_mozilla/css/box_shadow_default_color_a.html"
|
||||
}
|
||||
],
|
||||
"css/box_shadow_inset_bg.html": [
|
||||
{
|
||||
"path": "css/box_shadow_inset_bg.html",
|
||||
|
|
20
tests/wpt/mozilla/tests/css/box_shadow_default_color_a.html
Normal file
20
tests/wpt/mozilla/tests/css/box_shadow_default_color_a.html
Normal file
|
@ -0,0 +1,20 @@
|
|||
<head>
|
||||
<!-- Tests that the box-shadow color is correct if unspecified. -->
|
||||
<link rel=match href=box_shadow_default_color_ref.html>
|
||||
<style>
|
||||
section {
|
||||
position: absolute;
|
||||
width: 100px;
|
||||
height: 100px;
|
||||
top: 100px;
|
||||
left: 100px;
|
||||
border: solid black 1px;
|
||||
color: blue;
|
||||
box-shadow: 30px 10px;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<section></section>
|
||||
</body>
|
||||
|
|
@ -0,0 +1,18 @@
|
|||
<head>
|
||||
<!-- Tests that the box-shadow color is correct if unspecified. -->
|
||||
<style>
|
||||
section {
|
||||
position: absolute;
|
||||
width: 100px;
|
||||
height: 100px;
|
||||
top: 100px;
|
||||
left: 100px;
|
||||
border: solid black 1px;
|
||||
box-shadow: 30px 10px blue;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<section></section>
|
||||
</body>
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue