blob: ce68135d5f5e90b4d568c9f2d3b862c167f9900e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<!DOCTYPE html>
<html>
<head>
<title>Bug 1274624: Clamped colour stop interpolation</title>
<style type="text/css">
div {
background: linear-gradient(90deg, rgba(0, 0, 255, 1) -200%, rgba(255, 255, 0, 0) 300%);
background-size: 100px 100px;
width: 400px;
height: 400px;
}
</style>
</head>
<body>
<div>
</div>
</body>
</html>
|