4 <script src=
"../../resources/js-test.js"></script>
7 <input type=
"email" id=
"email">
8 <input type=
"number" id=
"number">
9 <input type=
"date" id=
"date">
10 <input type=
"month" id=
"month">
11 <input type=
"week" id=
"week">
12 <input type=
"time" id=
"time">
13 <input type=
"datetime-local" id=
"datetime-local">
14 <input type=
"color" id=
"color">
15 <input type=
"file" id=
"file">
17 description('Test to show select() support for Email, Number, Date, Month, Week, Time, DateTime-Local, Color and File.');
19 shouldNotThrow('document.getElementById("email").select()');
20 shouldNotThrow('document.getElementById("number").select()');
21 shouldNotThrow('document.getElementById("date").select()');
22 shouldNotThrow('document.getElementById("month").select()');
23 shouldNotThrow('document.getElementById("week").select()');
24 shouldNotThrow('document.getElementById("time").select()');
25 shouldNotThrow('document.getElementById("datetime-local").select()');
26 shouldNotThrow('document.getElementById("color").select()');
27 shouldNotThrow('document.getElementById("file").select()');