summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/fast/forms/time-multiple-fields/time-multiple-fields-open-picker-key-bindings.html
blob: 78c2ce109b6d7198fb3b4c9bbb2b28650002a65d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<!DOCTYPE html>
<html>
<head>
<script src="../../js/resources/js-test-pre.js"></script>
<script src="../resources/picker-common.js"></script>
</head>
<body>
<p id="description"></p>
<div id="console"></div>

<input type=time id=time value="2011-05-01">

<script>
description('F4 or Alt+Down should not open the calendar picker.');

var input = document.getElementById('time');
sendKey(input, 'F4', false, false);
shouldBeNull('document.getElementById("mock-page-popup")');
sendKey(input, 'Down', false, true);
shouldBeNull('document.getElementById("mock-page-popup")');

finishJSTest();

</script>
<script src="../../js/resources/js-test-post.js"></script>
</body>
</html>