mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-26 01:35:08 +02:00
See previous commit for details We now support parsing of `display-p3-linear` (although it just falls back to using Oklab since Skia doesn't support it)
13 lines
270 B
HTML
13 lines
270 B
HTML
<!DOCTYPE html>
|
|
<script src="../include.js"></script>
|
|
<style>
|
|
#foo {
|
|
background-image: linear-gradient(in display-p3-linear, red, blue);
|
|
}
|
|
</style>
|
|
<script>
|
|
test(() => {
|
|
println(document.styleSheets[0].cssRules[0].cssText);
|
|
});
|
|
</script>
|