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.html17
1 files changed, 17 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..adc408ebb
--- /dev/null
+++ b/tests/auto/quick/qmltests/data/directoryupload.html
@@ -0,0 +1,17 @@
+<html>
+<head>
+<meta name="viewport" content="width=device-width, initial-scale=1.0">
+<title> Directory Upload </title>
+<script src = "./titleupdate.js">
+</script>
+</head>
+
+<body>
+<input type="file" id="upfile" webkitdirectory="" directory="" onchange="updateTitle()">
+<script>
+window.onload = function() {
+document.getElementById("upfile").focus()
+}
+</script>
+</body>
+</html>