summaryrefslogtreecommitdiffstats
path: root/tests/auto/quick/qmltests/data/singlefileupload.html
blob: ac91c2c0da754f1b23a397436ce0bcee13132e90 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title> Failed to Upload </title>
<script src = "./titleupdate.js">
</script>
</head>

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

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