summaryrefslogtreecommitdiffstats
path: root/tests/auto/quick/qmltests/data/directoryupload.html
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/quick/qmltests/data/directoryupload.html')
-rw-r--r--tests/auto/quick/qmltests/data/directoryupload.html16
1 files changed, 16 insertions, 0 deletions
diff --git a/tests/auto/quick/qmltests/data/directoryupload.html b/tests/auto/quick/qmltests/data/directoryupload.html
new file mode 100644
index 000000000..6a6e4580c
--- /dev/null
+++ b/tests/auto/quick/qmltests/data/directoryupload.html
@@ -0,0 +1,16 @@
+<html>
+<head>
+<meta name="viewport" initial-scale=1">
+<title> Directory Upload </title>
+<script src = "./titleupdate.js">
+</script>
+
+<body>
+<input type="file" id="upfile" webkitdirectory="" directory="" onchange="updateTitle()">
+<script>
+window.onload = function() {
+document.getElementById("upfile").focus()
+}
+</script>
+</body>
+</html>