Move linear_gradients_corners_a.html to wpt reftests.

This commit is contained in:
Ms2ger 2015-11-13 14:42:12 +01:00
parent 1948b6914e
commit d0b7f1628b
4 changed files with 25 additions and 1 deletions

View file

@ -35,7 +35,6 @@ prefs:"layout.writing-mode.enabled" == iframe/size_attributes_vertical_writing_m
== iframe/stacking_context_position_a.html iframe/stacking_context_position_ref.html
# inline_border_a.html inline_border_b.html
!= linear_gradients_corners_a.html linear_gradients_corners_ref.html
!= linear_gradients_smoke_a.html linear_gradients_smoke_ref.html
flaky_cpu == linebreak_simple_a.html linebreak_simple_b.html
# Fails intermittently (#3636)

View file

@ -1,20 +0,0 @@
<!DOCTYPE html>
<html>
<head>
<!-- Tests that corners are not handled incorrectly. -->
<style>
section {
display: block;
width: 300px;
height: 150px;
border: solid black 1px;
}
#a {
background: linear-gradient(to top right, white, black);
}
</style>
</head>
<body>
<section id=a></section>
</body>
</html>

View file

@ -1,20 +0,0 @@
<!DOCTYPE html>
<html>
<head>
<!-- Tests that corners are not handled incorrectly. -->
<style>
section {
display: block;
width: 300px;
height: 150px;
border: solid black 1px;
}
#a {
background: linear-gradient(45deg, white, black);
}
</style>
</head>
<body>
<section id=a></section>
</body>
</html>