aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmlecmascript/data/include_remote_missing.js
blob: 5ebc1aadf0e1a5fa7bbd7261814d4591d97995f4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
function go(serverBaseUrl)
{
    var a = Qt.include(serverBaseUrl + "/missing.js",
                       function(o) {
                            test2 = o.status == o.NETWORK_ERROR
                            test3 = a.status == a.NETWORK_ERROR

                            done = true;
                       });

    test1 = a.status == a.LOADING
}