mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-02-05 15:27:04 +00:00
Now each test type has the same directories: - input - expected - data Also, tests can be in subdirectories within ./input.
40 lines
870 B
HTML
40 lines
870 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<link rel="match" href="../expected/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>
|