summaryrefslogtreecommitdiffstats
path: root/layout/reftests/selection/non-themed-widget-ref.html
blob: 08faed7ec33172c007f937b7a3d756f571755287 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<html>
<head>
<style type="text/css">
input {
  background-color: Highlight;
}
input::-moz-selection {
  background-color: HighlightText;
  color: Highlight;
}
</style>
</head>
<body onload="document.getElementById('i').select();">
<input id="i" value="text">
</body>
</html>