mirror of
https://github.com/servo/servo
synced 2026-05-08 16:12:15 +02:00
23 lines
446 B
HTML
23 lines
446 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<!--
|
|
Tests that `text-shadow` works with multiple unblurred shadows in the right order with the
|
|
right offsets.
|
|
-->
|
|
<link rel="stylesheet" type="text/css" href="css/ahem.css">
|
|
<style>
|
|
section {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 500px;
|
|
height: 500px;
|
|
color: green;
|
|
text-shadow: 20px 10px blue, 30px 40px red;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body><section>X</section></body>
|
|
</html>
|