forked from ftlabs/fastclick
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path160.html
More file actions
26 lines (26 loc) · 687 Bytes
/
160.html
File metadata and controls
26 lines (26 loc) · 687 Bytes
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
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<style type="text/css">
p { font-family: sans-serif; }
</style>
<title>#160</title>
<script type="application/javascript" src="../lib/fastclick.js"></script>
<script type="application/javascript">
window.addEventListener('load', function() {
FastClick.attach(document.body);
}, false);
</script>
</head>
<body>
<p>Calling elem.setSelectionRange on inputs with type date or time throws a TypeError.</p>
<p>Filed as Apple bug #15122724.</p>
<form>
<p>Test:</p>
<input type="date" name="test">
<p>Control:</p>
<input name="control">
</form>
</body>
</html>