blob: 15e12147a883a59de4912b818cf09ca05c70251f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<!DOCTYPE html>
<html>
<head>
<style type="text/css">
.box {
height: 50px;
width: 50px;
background-image: -webkit-linear-gradient(blue, blue);
background-color: red;
-webkit-box-shadow: 20px 20px 5px green;
}
</style>
</head>
<body>
Test passes when a blue box is drawn with a green shadow.
<div class="box"></div>
</body>
</html>
|