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 |
[ "Error " , ReferenceError arguments: Array[0] get message: function getter() { [native code] } get stack: function getter() { [native code] } set message: function setter() { [native code] } set stack: function setter() { [native code] } type: "invalid_lhs_in_assignment" __proto__: Error , " delivering XML request status changed to " , function (requestEvent) { if (requestEvent.getStatus() == TrXMLRequestEvent.STATUS_COMPLETE) { var statusCode = requestEvent.getResponseStatusCode(); // The server might not return successfully, for example if an // exception is thrown. When that happens, a non-200 (OK) status // code is returned as part of the HTTP prototcol. if (statusCode == 200) { _pprStopBlocking(window); if (requestEvent.isPprResponse()) { var responseDocument = requestEvent.getResponseXML(); // Though not yet supported, Nokia browser sometimes fails to get // XML content. (Currently being investigated.) When that happens, // the function should simply return without calling // _handlePprResponse rather than crushing the function with null // pointer reference. // This is a temporary workaround and should be revisited when // Nokia browser is officially supported. if (responseDocument != null ) { this ._handlePprResponse(responseDocument.documentElement); } } else { // Should log some warning that we got an invalid response } } else if (statusCode >= 400) { // The RequestQueue logs these for us, so // we don't need to take action here. IMO, that's probably // wrong - we should do the handling here _pprStopBlocking(window); } } }] |
1 2 3 |
< tr:table id = "images-table" > <!-- some very complex code--> </ tr:table > |
1 2 3 |
< tr:table id = "imagesTable" > <!-- some very complex code--> </ tr:table > |