blob: 043779cb90acaa5b605ff92967ed4dd36e569318 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<style>
/* Eliminate the blue glow when focusing the element. */
input {
background: none;
border: none;
outline: none;
}
</style>
</head>
<body>
<a target="_blank" href="https://bugzil.la/1082486">Mozilla Bug 1082486</a>
<input id='i' value="abcdefghd" style="text-indent: -10px">
</body>
</html>
|