Files
ladybird/Tests/LibWeb/Screenshot/input/outer-box-shadow.html
Aliaksandr Kalenik d2528dd5ce LibWeb: Compare Screenshot tests directly against expected PNGs
Instead of rendering a reference HTML page that wraps an <img> tag
pointing to a PNG, Screenshot tests now load the expected PNG directly
from disk and compare it against the rendered screenshot. This
eliminates the indirection of loading and rendering a second page just
to display a static image.

This also means --rebaseline now works for Screenshot tests, generating
the expected PNG automatically instead of requiring manual screenshot
capture and placement.

Changes:
- Add TestMode::Screenshot with its own collector and runner
- Move PNGs from Screenshot/images/ to Screenshot/expected/ with
  normalized names matching input filenames
- Remove all 92 reference HTML wrapper files and the images/
  directory
- Remove <link rel="match"> from all 94 Screenshot input HTML
  files
- Update add_libweb_test.py Screenshot boilerplate accordingly
- Add Screenshot mode to results viewer image comparison tabs
2026-02-24 09:55:14 +01:00

77 lines
2.1 KiB
HTML

<!DOCTYPE html>
<html>
<meta name="fuzzy" content="maxDifference=0-2;totalPixels=0-19189">
<head>
<style>
.box {
border: 1px solid black;
height: 100px;
width: 100px;
margin: 50px;
}
#with-bg {
background-image: linear-gradient(to right, red, blue, cyan, yellow, green);
width: 240px;
padding-top: 60px;
}
.cmy {
box-shadow: 20px 10px 5px magenta, cyan -20px -10px 5px, yellow 10px -5px 5px 20px;
}
body {
background-color: white;
}
</style>
</head>
<body>
<div id="no-bg">
<div class="box cmy" style="border-radius: 50%;">
</div>
<div class="box cmy" style="border-radius: 80% 15% 55% 50% / 55% 15% 80% 50%;">
</div>
<div class="box cmy" style="border-radius: 20px;">
</div>
<div class="box" style="box-shadow: magenta -40px -20px; border-radius: 30%;">
</div>
<div class="box cmy">
</div>
<div class="box" style="box-shadow: 20px 10px 5px magenta">
</div>
<div class="box" style="box-shadow: 20px 10px magenta">
</div>
<div class="box" style="box-shadow: magenta -40px -20px">
</div>
<div class="box" style="box-shadow: 20px 10px rgba(255,0,255,0.5)">
</div>
<div class="box" style="box-shadow: -40px -20px rgba(255,0,255,0.5)">
</div>
</div>
<div id="with-bg">
<div class="box cmy" style="border-radius: 50%;">
</div>
<div class="box cmy" style="border-radius: 80% 15% 55% 50% / 55% 15% 80% 50%;">
</div>
<div class="box cmy" style="border-radius: 20px;">
</div>
<div class="box" style="box-shadow: magenta -40px -20px; border-radius: 30%;">
</div>
<div class="box cmy">
</div>
<div class="box" style="box-shadow: 20px 10px 5px magenta">
</div>
<div class="box" style="box-shadow: 20px 10px magenta">
</div>
<div class="box" style="box-shadow: magenta -40px -20px">
</div>
<div class="box" style="box-shadow: 20px 10px rgba(255,0,255,0.5)">
</div>
<div class="box" style="box-shadow: -40px -20px rgba(255,0,255,0.5)">
</div>
</div>
</body>
</html>