summaryrefslogtreecommitdiffstats
path: root/layout/reftests/text-shadow/text-shadow-on-selection-1.html
blob: a0c29c321b9392b1e4ab076aef4d6c6f488b94c0 (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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<!DOCTYPE html>
<html class="reftest-wait">
<head>
<script type="text/javascript">
function onload() {
  var range = document.createRange();
  range.selectNodeContents(document.getElementById("selectMe"));
  var sel = window.getSelection();
  sel.removeAllRanges();
  sel.addRange(range);
  window.focus();
}
function disableReftestWait() {
  document.documentElement.className = '';
}
</script>
<style type="text/css">
body {
  background: white;
  font-size: 24px;
}
div {
  color: blue;
  text-shadow: red 2px 2px 0px;
}
::-moz-selection {
  background: yellow;
  color: white;
}
::selection {
  background: yellow;
  color: white;
}
</style>
</head>
<body onload="onload()" onfocus="disableReftestWait()">
<div>
hello <span id="selectMe">selected</span> world
</div>
</body>
</html>