Sign in
chromium
/
chromium
/
src
/
58b67c986549e8431f760ef5c64980b2632f799e
/
.
/
content
/
test
/
data
/
accessibility
/
event
/
caret-move-hidden-input.html
blob: e1e1368a924d34c1d3b0bf645d594b204ec739a2 [
file
] [
log
] [
blame
]
<div
aria-hidden
=
"true"
>
<input
id
=
"input"
aria-label
=
"search"
value
=
"foo"
>
</div>
<script>
function
go
()
{
var
input
=
document
.
getElementById
(
"input"
);
input
.
focus
();
input
.
setSelectionRange
(
1
,
1
);
}
</script>