blob: d7549211793efcfe3432f6795fe65ddab994ec44 (
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
|
import Qt 4.7
QtObject {
property bool xmlNull: false
property bool dataOK: false
Component.onCompleted: {
var x = new XMLHttpRequest;
x.open("GET", "testdocument.html");
// Test to the end
x.onreadystatechange = function() {
if (x.readyState == XMLHttpRequest.DONE) {
dataOK = (x.responseText == "QML Rocks!\n");
xmlNull = (x.responseXML == null);
}
}
x.send()
}
}
|