mirror of
https://github.com/servo/servo.git
synced 2025-10-01 00:59:15 +01:00
Move box_shadow_inset_parsing_a.html to wpt reftests.
This commit is contained in:
parent
ca62d2387e
commit
3ac3085b18
4 changed files with 25 additions and 1 deletions
|
@ -923,6 +923,18 @@
|
|||
"url": "/_mozilla/css/box_shadow_inset_bg.html"
|
||||
}
|
||||
],
|
||||
"css/box_shadow_inset_parsing_a.html": [
|
||||
{
|
||||
"path": "css/box_shadow_inset_parsing_a.html",
|
||||
"references": [
|
||||
[
|
||||
"/_mozilla/css/box_shadow_inset_parsing_ref.html",
|
||||
"=="
|
||||
]
|
||||
],
|
||||
"url": "/_mozilla/css/box_shadow_inset_parsing_a.html"
|
||||
}
|
||||
],
|
||||
"css/box_shadow_paint_order_a.html": [
|
||||
{
|
||||
"path": "css/box_shadow_paint_order_a.html",
|
||||
|
@ -5670,6 +5682,18 @@
|
|||
"url": "/_mozilla/css/box_shadow_inset_bg.html"
|
||||
}
|
||||
],
|
||||
"css/box_shadow_inset_parsing_a.html": [
|
||||
{
|
||||
"path": "css/box_shadow_inset_parsing_a.html",
|
||||
"references": [
|
||||
[
|
||||
"/_mozilla/css/box_shadow_inset_parsing_ref.html",
|
||||
"=="
|
||||
]
|
||||
],
|
||||
"url": "/_mozilla/css/box_shadow_inset_parsing_a.html"
|
||||
}
|
||||
],
|
||||
"css/box_shadow_paint_order_a.html": [
|
||||
{
|
||||
"path": "css/box_shadow_paint_order_a.html",
|
||||
|
|
21
tests/wpt/mozilla/tests/css/box_shadow_inset_parsing_a.html
Normal file
21
tests/wpt/mozilla/tests/css/box_shadow_inset_parsing_a.html
Normal file
|
@ -0,0 +1,21 @@
|
|||
<!DOCTYPE html>
|
||||
<head>
|
||||
<!-- Tests that box-shadow inset parsing quirks work properly. -->
|
||||
<link rel=match href=box_shadow_inset_parsing_ref.html>
|
||||
<style>
|
||||
section {
|
||||
position: absolute;
|
||||
width: 100px;
|
||||
height: 100px;
|
||||
top: 100px;
|
||||
left: 100px;
|
||||
border: solid black 1px;
|
||||
box-shadow: inset 0 0 1em gold;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<section></section>
|
||||
</body>
|
||||
|
||||
|
|
@ -0,0 +1,21 @@
|
|||
<!DOCTYPE html>
|
||||
<head>
|
||||
<!-- Tests that box-shadow inset parsing quirks work properly. -->
|
||||
<style>
|
||||
section {
|
||||
position: absolute;
|
||||
width: 100px;
|
||||
height: 100px;
|
||||
top: 100px;
|
||||
left: 100px;
|
||||
border: solid black 1px;
|
||||
box-shadow: 0 0 1em gold inset;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<section></section>
|
||||
</body>
|
||||
|
||||
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue