1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-10-16 07:22:07 +00:00
serenity/Base/res/html/misc/text-decoration.html
Sam Atkins 68193c365f LibWeb: Resolve CSS text-decoration from value list
This detects and resolves these in the text-decoration property, in any
order:

- text-decoration-color
- text-decoration-line
- text-decoration-style

Only the solid underline renders, but all three sub-properties are
assigned correctly.
2021-07-22 23:09:01 +02:00

18 lines
454 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>text-decoration test</title>
<style>
.overline { text-decoration: wavy blue overline; }
.underline { text-decoration: double red underline; }
.strikethrough { text-decoration: dotted green line-through; }
.blink { text-decoration: blink; }
</style>
</head>
<body>
<p class="overline">Overline</p>
<p class="underline">Underline</p>
<p class="strikethrough">Wombling</p>
<p class="blink">FREE!</p>
</body>
</html>