Source code

Revision control

Copy as Markdown

Other Tools

<!DOCTYPE html>
<html>
<head>
<title>Gradient interpolation</title>
<link rel="author" title="CGQAQ" href="mailto:m.jason.liu@gmail.com">
<meta name="assert" content="Test gradient missing component resolving should happens after color-space conversion">
<line rel="match" href="gradient-eval-010-ref.html">
<style>
.test {
width: 100px;
height: 100px;
/* none should not resolve to 40% */
/* hsl(180 50% 40%) in rgb is color(srgb 0.2 0.6 0.6) which is 60% of b component */
background: linear-gradient(90deg in srgb, color(srgb 0 0 none), hsl(180 50% 40%));
}
</style>
</head>
<body>
<div class="test"></div>
</body>
</html>