summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/fast/forms/textarea/textarea-placeholder-visibility-3-expected.html
blob: 8063036f38d72a7320f7e8f543f1b035f73f542a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
<html>
<head>
</head>
<body>
<p id="description">Focus field with a placeholder, then type.</p>
<div>
<textarea id=i1>Text</textarea>
<script>
var i1 = document.getElementById('i1');
i1.focus();
i1.setSelectionRange(4, 4);
</script>
</body>
</html>