aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmlxmlhttprequest/data/invalidMethodUsage.qml
blob: 5a4093b9f1b23499ccc5aac60d89929fd47843af (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
import QtQuick 2.0 

QtObject {
    property bool readyState: false
    property bool status: false
    property bool statusText: false
    property bool responseText: false
    property bool responseXML: false

    property bool open: false
    property bool setRequestHeader: false
    property bool send: false
    property bool abort: false
    property bool getResponseHeader: false
    property bool getAllResponseHeaders: false

    Component.onCompleted: {
        var o = 10;

        try {
            XMLHttpRequest.prototype.readyState
        } catch (e) {
            if (!(e instanceof ReferenceError))
                return;

            if (e.message != "Not an XMLHttpRequest object")
                return;

            readyState = true;
        }
        try {
            XMLHttpRequest.prototype.status
        } catch (e) {
            if (!(e instanceof ReferenceError))
                return;

            if (e.message != "Not an XMLHttpRequest object")
                return;

            status = true;
        }
        try {
            XMLHttpRequest.prototype.statusText
        } catch (e) {
            if (!(e instanceof ReferenceError))
                return;

            if (e.message != "Not an XMLHttpRequest object")
                return;

            statusText = true;
        }
        try {
            XMLHttpRequest.prototype.responseText
        } catch (e) {
            if (!(e instanceof ReferenceError))
                return;

            if (e.message != "Not an XMLHttpRequest object")
                return;

            responseText = true;
        }
        try {
            XMLHttpRequest.prototype.responseXML
        } catch (e) {
            if (!(e instanceof ReferenceError))
                return;

            if (e.message != "Not an XMLHttpRequest object")
                return;

            responseXML = true;
        }

        try {
            XMLHttpRequest.prototype.open.call(o);
        } catch (e) {
            if (!(e instanceof ReferenceError))
                return;

            if (e.message != "Not an XMLHttpRequest object")
                return;

            open = true;
        }

        try {
            XMLHttpRequest.prototype.setRequestHeader.call(o);
        } catch (e) {
            if (!(e instanceof ReferenceError))
                return;

            if (e.message != "Not an XMLHttpRequest object")
                return;

            setRequestHeader = true;
        }

        try {
            XMLHttpRequest.prototype.send.call(o);
        } catch (e) {
            if (!(e instanceof ReferenceError))
                return;

            if (e.message != "Not an XMLHttpRequest object")
                return;

            send = true;
        }

        try {
            XMLHttpRequest.prototype.abort.call(o);
        } catch (e) {
            if (!(e instanceof ReferenceError))
                return;

            if (e.message != "Not an XMLHttpRequest object")
                return;

            abort = true;
        }

        try {
            XMLHttpRequest.prototype.getResponseHeader.call(o);
        } catch (e) {
            if (!(e instanceof ReferenceError))
                return;

            if (e.message != "Not an XMLHttpRequest object")
                return;

            getResponseHeader = true;
        }

        try {
            XMLHttpRequest.prototype.getAllResponseHeaders.call(o);
        } catch (e) {
            if (!(e instanceof ReferenceError))
                return;

            if (e.message != "Not an XMLHttpRequest object")
                return;

            getAllResponseHeaders = true;
        }
    }
}