mirror of
https://github.com/servo/servo.git
synced 2025-06-25 17:44:33 +01:00
19 lines
632 B
HTML
19 lines
632 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>sRGB-linear gradient interpolation</title>
|
|
<link rel="author" title="Aaron Krajeski" href="mailto:aaronhk@chromium.org">
|
|
<link rel="help" href="https://www.w3.org/TR/css-color-4/#interpolation">
|
|
<meta name="assert" content="Test sRGB-linear as a gradient interpolation space. Reference generated here: https://raphlinus.github.io/color/2021/01/18/oklab-critique.html">
|
|
<style>
|
|
.test {
|
|
width: 480px;
|
|
height: 50px;
|
|
background: url("resources/red-green-gradient-linear-colorspace.png");
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="test"></div>
|
|
</body>
|
|
</html>
|