summaryrefslogtreecommitdiffstats
path: root/tests/auto/quick/qmltests/data/directoryupload.html
diff options
context:
space:
mode:
authorAdam Kallai <kadam@inf.u-szeged.hu>2015-03-13 17:33:13 +0100
committerLiang Qi <liang.qi@theqtcompany.com>2015-04-24 06:39:49 +0000
commit18cc8aa2893e62f2b2679e67ed4747243e25da35 (patch)
tree9fd0be7ccf040aae64c271cac0e4cbc232397515 /tests/auto/quick/qmltests/data/directoryupload.html
parentbb2e06f828c2169f6853a7e8fd29b138bb469fe3 (diff)
Add tst_filePicker.qml test for UIDelegate
Testing single, multiple file and directory upload. Change-Id: I9da9e1f780a7f97a300fcaa38738ea781b85a4a7 Reviewed-by: Pierre Rossi <pierre.rossi@theqtcompany.com> Reviewed-by: Andras Becsi <andras.becsi@theqtcompany.com>
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>