aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativexmlhttprequest/data/open_user.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/declarative/qdeclarativexmlhttprequest/data/open_user.qml')
-rw-r--r--tests/auto/declarative/qdeclarativexmlhttprequest/data/open_user.qml54
1 files changed, 0 insertions, 54 deletions
diff --git a/tests/auto/declarative/qdeclarativexmlhttprequest/data/open_user.qml b/tests/auto/declarative/qdeclarativexmlhttprequest/data/open_user.qml
deleted file mode 100644
index 4eaef536b3..0000000000
--- a/tests/auto/declarative/qdeclarativexmlhttprequest/data/open_user.qml
+++ /dev/null
@@ -1,54 +0,0 @@
-import QtQuick 2.0
-
-QtObject {
- property string url
-
- property bool readyState: false
- property bool openedState: false
-
- property bool status: false
- property bool statusText: false
- property bool responseText: false
- property bool responseXML: false
-
- property bool dataOK: false
-
- Component.onCompleted: {
- var x = new XMLHttpRequest;
-
- if (x.readyState == XMLHttpRequest.UNSENT)
- readyState = true;
-
- x.open("GET", url, true, "username", "password");
- x.setRequestHeader("Accept-Language","en-US");
-
- if (x.readyState == XMLHttpRequest.OPENED)
- openedState = true;
-
- try {
- var a = x.status;
- } catch (error) {
- if (error.code == DOMException.INVALID_STATE_ERR)
- status = true;
- }
- try {
- var a = x.statusText;
- } catch (error) {
- if (error.code == DOMException.INVALID_STATE_ERR)
- statusText = true;
- }
- responseText = (x.responseText == "");
- responseXML = (x.responseXML == null);
-
- // Test to the end
- x.onreadystatechange = function() {
- if (x.readyState == XMLHttpRequest.DONE) {
- dataOK = (x.responseText == "QML Rocks!\n");
- }
- }
-
-
- x.send()
- }
-}
-