1
0
Fork 0
firefox/layout/reftests/text-shadow/text-shadow-on-selection-2-ref.html
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

27 lines
350 B
HTML

<!DOCTYPE html>
<html>
<head>
<style type="text/css">
body {
background: white;
color: black;
font-size: 24px;
}
div {
background: white;
color: blue;
text-shadow: red 2px 2px 0px;
}
span {
background: yellow;
color: white;
text-shadow: none;
}
</style>
</head>
<body>
<div>
hello <span>selected</span> world
</div>
</body>
</html>