repo.or.cz
/
chromium-blink-merge.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge Chromium + Blink git repositories
[chromium-blink-merge.git]
/
third_party
/
WebKit
/
LayoutTests
/
fast
/
forms
/
textarea-scrolled-focus-ring.html
blob
9c6a080bf0125d05c411df6fc9823c2320006240
1
<!doctype
html
>
2
<head>
3
<script>
4
function
test
()
5
{
6
ta
.
setSelectionRange
(
ta
.
value
.
length
,
ta
.
value
.
length
);
7
ta
.
focus
();
8
}
9
</script>
10
</head>
11
<body
onload
=
"test()"
>
12
Test passes if a focus ring is visible around text area when focused and scrolled to bottom.
<br>
13
<textarea
id
=
"ta"
rows=
2
>
14
1
15
2
16
3
17
4
18
</textarea>
19
</body>