summaryrefslogtreecommitdiffstats
path: root/layout/reftests/selection/pseudo-element-of-native-anonymous.html
blob: 9193f1c27c205fc1141454e19233de746611fe17 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<html>
<head>
<style type="text/css">
input {
  color: white;
  background-color: green;
}
input::-moz-selection {
  color: red;
  background-color: blue;
}
</style>
</head>
<body onload="document.getElementById('i').select();">
<input value="text" id="i">
</body>
</html>