blob: d3cc8451a5afa81fa6188b90b2b87d0345d80692 (
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
|
import Qt 4.7
QtObject {
property int unsent
property int opened
property int headers_received
property int loading
property int done
Component.onCompleted: {
// Attempt to overwrite and delete values
var x = new XMLHttpRequest();
x.UNSENT = 9;
x.OPENED = 9;
x.HEADERS_RECEIVED = 9;
x.LOADING = 9;
x.DONE = 9;
delete x.UNSENT;
delete x.OPENED;
delete x.HEADERS_RECEIVED;
delete x.LOADING;
delete x.DONE;
unsent = x.UNSENT
opened = x.OPENED
headers_received = x.HEADERS_RECEIVED
loading = x.LOADING
done = x.DONE
}
}
|