Move linear_gradients_smoke_a.html to wpt reftests.

This commit is contained in:
Ms2ger 2015-11-13 14:52:46 +01:00
parent d0b7f1628b
commit 6ef1f559e0
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_smoke_a.html linear_gradients_smoke_ref.html
flaky_cpu == linebreak_simple_a.html linebreak_simple_b.html
# Fails intermittently (#3636)
# == link_style_dynamic_addition.html link_style_dynamic_addition_ref.html

View file

@ -1,26 +0,0 @@
<!DOCTYPE html>
<html>
<head>
<!-- Tests that linear gradients render *something*. -->
<style>
section {
display: block;
width: 300px;
height: 150px;
border: solid black 1px;
}
#a {
background: linear-gradient(to bottom, white, black);
}
#b {
background: linear-gradient(to right, red, orange, yellow, green, blue, indigo, violet);
}
</style>
</head>
<body>
<section id=a></section>
<section id=b></section>
</body>
</html>

View file

@ -1,20 +0,0 @@
<!DOCTYPE html>
<html>
<head>
<!-- Tests that linear gradients render *something*. -->
<style>
section {
display: block;
width: 300px;
height: 150px;
border: solid black 1px;
}
</style>
</head>
<body>
<section id=a></section>
<section id=b></section>
</body>
</html>