gradient-eval-006.html (962B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <title>Gradient interpolation</title> 5 <meta name="fuzzy" content="maxDifference=1-2;totalPixels=0-10000"> 6 <link rel="author" title="Mike Bremford" href="mailto:mike@bfo.com"> 7 <link rel="help" href="https://www.w3.org/TR/css-color-4/#interpolation"> 8 <meta name="assert" content="Tests that interpolation between two out-of-gamut doesn't gamut-map the end-points before interpolation"> 9 <link rel="match" href="gradient-eval-006-ref.html"> 10 <style> 11 :root { 12 --start: lab(75% 50 86.6); /* rgb(111.9% 55.94% -11.3%) */ 13 --end: lab(75% -50 -86.6); /* rgb(-76.3% 83.91% 135.5%) */ 14 --t: 0.5; 15 --big: 131070000px; 16 } 17 .test { 18 width: 100px; 19 height: 100px; 20 background: linear-gradient(in lab, var(--start) calc(var(--big) * (0 - var(--t))), var(--end) calc(var(--big) * (1 - var(--t)))); 21 } 22 </style> 23 </head> 24 <body> 25 <div class="test"></div> 26 </body> 27 </html>