summaryrefslogtreecommitdiffstats
path: root/tests/auto/quick/qmltests/data/singlefileupload.html
blob: 8469aa128dd9f185d8fff0e4b953560e841e3091 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<html>
<head>
<meta name="viewport" initial-scale=1">
<title> Single File Upload </title>
<script src = "./titleupdate.js">
</script>

<body>
<input type="file" name="file" id="upfile" onchange="updateTitle()"/>

<script>
window.onload = function() {
document.getElementById("upfile").focus()
}
</script>
</body>
</html>