summaryrefslogtreecommitdiffstats
path: root/layout/reftests/text-shadow/text-shadow-on-selection-2-ref.html
blob: 09d9e4063a805b8f3aa25b708ff1e97268795c8f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<!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>