Move box_shadow_inset_parsing_a.html to wpt reftests.

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

View file

@ -11,7 +11,6 @@ fragment=top != ../html/acid2.html acid2_ref.html
== acid2_noscroll.html acid2_ref_broken.html
flaky_cpu == append_style_a.html append_style_b.html
== box_shadow_inset_parsing_a.html box_shadow_inset_parsing_ref.html
== box_shadow_spread_a.html box_shadow_spread_ref.html
== canvas_radial_gradient_a.html canvas_radial_gradient_ref.html
== fixed_width_overrides_child_intrinsic_width_a.html fixed_width_overrides_child_intrinsic_width_ref.html

View file

@ -1,20 +0,0 @@
<!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: inset 0 0 1em gold;
}
</style>
</head>
<body>
<section></section>
</body>

View file

@ -1,21 +0,0 @@
<!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>