mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 634982. Reftest. r=jrmuizel
--HG-- extra : rebase_source : 1ffa269abef40fc16b08c6a34c6bb87906112a82
This commit is contained in:
parent
a6d3b2e9c0
commit
c6cf18e091
@ -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
|
||||
|
19
layout/reftests/css-gradients/repeated-final-stop-1-ref.html
Normal file
19
layout/reftests/css-gradients/repeated-final-stop-1-ref.html
Normal 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>
|
18
layout/reftests/css-gradients/repeated-final-stop-1.html
Normal file
18
layout/reftests/css-gradients/repeated-final-stop-1.html
Normal 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>
|
Loading…
Reference in New Issue
Block a user