OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <html> | 2 <html> |
3 <body> | 3 <body> |
4 <input name="input" id="input"></input> | 4 <input name="input" id="input"></input> |
5 <script src="../js/resources/js-test-pre.js"></script> | 5 <script src="../js/resources/js-test-pre.js"></script> |
6 <script> | 6 <script> |
7 description('Tests accessing webkitEntries does not crash when input type is not
file'); | 7 description('Tests accessing webkitEntries does not crash when input type is not
file'); |
8 | 8 |
9 var input = document.getElementById('input'); | 9 var input = document.getElementById('input'); |
10 shouldEvaluateTo('input.webkitEntries.length', 0); | 10 shouldEvaluateTo('input.webkitEntries.length', 0); |
11 | 11 |
12 </script> | 12 </script> |
13 <script src="../js/resources/js-test-post.js"></script> | |
14 </body> | 13 </body> |
15 </html> | 14 </html> |
OLD | NEW |