Files
ladybird/Tests/LibWeb/Screenshot/text-decorations.html
Aliaksandr Kalenik 715f033007 Tests+headless-browser: Move screenshot ref-tests into own directory
This change will make it easier to disable screenshot comparison tests
on a specific platform or have per-platform expectations.

Additionally, it's nice to be able to tell if a ref-test uses a
screenshot as an expectation by looking at the test path.
2024-07-19 13:52:00 +02:00

40 lines
868 B
HTML

<!DOCTYPE html>
<html>
<head>
<link rel="match" href="reference/text-decorations-ref.html" />
<style>
.underline {
text-decoration: underline;
text-decoration-thickness: 2px;
}
.overline {
text-decoration: overline;
text-decoration-thickness: 2px;
}
.line-through {
text-decoration: line-through;
text-decoration-thickness: 2px;
}
.underline-overline {
text-decoration: underline overline;
text-decoration-thickness: 2px;
}
.underline-line-through {
text-decoration: underline line-through;
text-decoration-thickness: 2px;
}
</style>
</head>
<body>
<p class="underline">Hello</p>
<p class="overline">Hello</p>
<p class="line-through">Hello</p>
<p class="underline-overline">Hello</p>
<p class="underline-line-through">Hello</p>
</body>
</html>