mirror of
https://github.com/servo/servo.git
synced 2025-06-19 14:48:59 +01:00
22 lines
446 B
HTML
22 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>
|