mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-10-31 22:25:30 +00:00
bb554f2bb4
Touch caret should not be show in the two test cases since caret does not show in the scroll frame.
19 lines
415 B
HTML
19 lines
415 B
HTML
<!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>
|