Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- Manifest: layout/reftests/selection/reftest.list
<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" inputmode="none">
</body>
</html>