summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/fast/filesystem/input-access-entries.html
blob: 2679c2600df7a92ea8a505fa1318c99f23faee67 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<!DOCTYPE html>
<html>
<body>
<input name="input" id="input"></input>
<script src="../../resources/js-test.js"></script>
<script>
description('Tests accessing webkitEntries does not crash when input type is not file');

var input = document.getElementById('input');
shouldEvaluateTo('input.webkitEntries.length', 0);

</script>
</body>
</html>