Initial import from the monolithic Qt.
[profile/ivi/qtdeclarative.git] / tests / auto / declarative / qdeclarativeecmascript / data / include_remote_missing.js
1 function go()
2 {
3     var a = Qt.include("http://127.0.0.1:8111/missing.js", 
4                        function(o) { 
5                             test2 = o.status == o.NETWORK_ERROR
6                             test3 = a.status == a.NETWORK_ERROR
7
8                             done = true;
9                        });
10
11     test1 = a.status == a.LOADING
12 }
13