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
Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git]
/
third_party
/
WebKit
/
LayoutTests
/
fast
/
forms
/
input-placeholder-visibility-1.html
blob
59ef5866e03e2880886bf210c2cb5f20688821ed
1
<!DOCTYPE
HTML PUBLIC
"-//IETF//DTD HTML//EN"
>
2
<html>
3
<head>
4
</head>
5
<body>
6
<p
id
=
"description"
>
Focus the field, focus away, then focus the field again.
</p>
7
<div>
8
<input
id=i1
placeholder
=
"Placeholder"
>
9
<script>
10
var
i1
=
document
.
getElementById
(
'i1'
);
11
i1
.
focus
();
12
i1
.
blur
();
13
i1
.
focus
();
14
</script>
15
</body>
16
</html>