mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2026-04-19 10:20:22 +00:00
With the newly supported fuzzy matching in our test-web runner, we can now define the expected maximum color channel and pixel count errors per failing test and set a baseline they should not exceed. The figures I added to these tests all come from my macOS M4 machine. Most discrepancies seem to come from color calculations being slightly off.
45 lines
1.2 KiB
HTML
45 lines
1.2 KiB
HTML
<!DOCTYPE html>
|
|
<link rel="match" href="../expected/css-compositing-ref.html" />
|
|
<meta name="fuzzy" content="maxDifference=0-3;totalPixels=0-2915">
|
|
<style>
|
|
div {
|
|
position: absolute;
|
|
width: 60px;
|
|
height: 60px;
|
|
opacity: 50%;
|
|
}
|
|
#d1 {
|
|
background-color: rgb(186, 190, 92);
|
|
}
|
|
#d2 {
|
|
background-color: linear-gradient(to right rgb(255, 132, 0) 51%),
|
|
linear-gradient(to right, rgb(255, 0, 212));
|
|
background-blend-mode: normal, difference;
|
|
mix-blend-mode: screen;
|
|
top: 10px;
|
|
}
|
|
#d3 {
|
|
background-color: rgb(21, 107, 118);
|
|
isolation: isolate;
|
|
mix-blend-mode: multiply;
|
|
top: 20px;
|
|
}
|
|
#d4 {
|
|
background-color: linear-gradient(to right rgb(77, 145, 113) 51%),
|
|
linear-gradient(to right, rgb(60, 118, 41));
|
|
background-blend-mode: normal, exclusion;
|
|
mix-blend-mode: normal;
|
|
isolation: isolate;
|
|
top: 30px;
|
|
}
|
|
#d5 {
|
|
background-color: rgb(34, 29, 78);
|
|
mix-blend-mode: difference;
|
|
top: 40px;
|
|
}
|
|
</style>
|
|
<div id="d1">111</div>
|
|
<div id="d2">222</div>
|
|
<div id="d3">333</div>
|
|
<div id="d4">444</div>
|
|
<div id="d5">555</div>
|