mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-03 16:16:43 +00:00
LibWeb: Implement css gradient-interpolation-method
This commit is contained in:
parent
02a642b87b
commit
31853c13d3
Notes:
github-actions[bot]
2025-03-06 11:34:14 +00:00
Author: https://github.com/Gingeh
Commit: 31853c13d3
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/3638
Reviewed-by: https://github.com/AtkinsSJ ✅
Reviewed-by: https://github.com/LucasChollet
35 changed files with 499 additions and 101 deletions
|
@ -0,0 +1,19 @@
|
|||
<!DOCTYPE html>
|
||||
<link rel="match" href="../expected/gradient-interpolation-method-ref.html" />
|
||||
<style>
|
||||
div {
|
||||
width: 480px;
|
||||
height: 50px;
|
||||
}
|
||||
</style>
|
||||
<div style="background: linear-gradient(to right in srgb, red, blue)"></div>
|
||||
<div style="background: linear-gradient(to right in srgb-linear, red, blue)"></div>
|
||||
<div style="background: linear-gradient(to right in lab, red, blue)"></div>
|
||||
<div style="background: linear-gradient(to right in oklab, red, blue)"></div>
|
||||
<div style="background: linear-gradient(to right in hsl, red, blue)"></div>
|
||||
<div style="background: linear-gradient(to right in hwb, red, blue)"></div>
|
||||
<div style="background: linear-gradient(to right in lch, red, blue)"></div>
|
||||
<div style="background: linear-gradient(to right in oklch shorter hue, red, blue)"></div>
|
||||
<div style="background: linear-gradient(to right in oklch longer hue, red, blue)"></div>
|
||||
<div style="background: linear-gradient(to right in oklch increasing hue, red, blue)"></div>
|
||||
<div style="background: linear-gradient(to right in oklch decreasing hue, red, blue)"></div>
|
Loading…
Add table
Add a link
Reference in a new issue