Bug 634982. Reftest. r=jrmuizel

--HG--
extra : rebase_source : 1ffa269abef40fc16b08c6a34c6bb87906112a82
This commit is contained in:
Robert O'Callahan 2013-12-13 01:33:01 +13:00
parent f7acd87e0a
commit 3d5aab6c0e
3 changed files with 38 additions and 0 deletions

View File

@ -85,6 +85,7 @@ fuzzy-if(Android,17,13320) == radial-shape-farthest-side-1c.html radial-shape-fa
== radial-zero-length-1h.html radial-zero-length-1-ref.html
== radial-zero-length-1i.html radial-zero-length-1-ref.html
== radial-zero-length-1j.html radial-zero-length-1-ref.html
== repeated-final-stop-1.html repeated-final-stop-1-ref.html
== repeating-linear-1a.html repeating-linear-1-ref.html
== repeating-linear-1b.html repeating-linear-1-ref.html
== repeating-linear-2a.html repeating-linear-2-ref.html

View File

@ -0,0 +1,19 @@
<!DOCTYPE HTML>
<html>
<head>
<style>
html {
background: white;
}
div {
background: -moz-linear-gradient(left, 0 white, 100% orange);
background: linear-gradient(left, 0 white, 100% orange);
height: 100px;
width: 50%;
}
</style>
</head>
<body>
<div></div>
</body>
</html>

View File

@ -0,0 +1,18 @@
<!DOCTYPE HTML>
<html>
<head>
<style>
html {
background: white;
}
div {
background: -moz-linear-gradient(left, 0 white, 50% orange, 50% white);
background: linear-gradient(left, 0 white, 50% orange, 50% white);
height: 100px;
}
</style>
</head>
<body>
<div></div>
</body>
</html>