summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/fast/forms/file/file-reset-in-change.html
blob: 7e4952e8d4bb3f5ef58a230504c5e8b66faccf59 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<!DOCTYPE html>
<script src="resources/file-drag-common.js"></script>
<body>
<p>Resetting a file upload control by script should clear the icon.</p>
<p>Manual test: Select a file for the file upload control, and confirm it has no icon.</p>
<input id=file1 type=file>
</form>
<script>
function handleChange() {
    file1.value = '';
}

var file1 = document.getElementById('file1');
file1.addEventListener('change', handleChange);
dragFilesOntoElement(file1, ['foo.txt']);
</script>
</body>