michael@0: /** michael@0: * Any copyright is dedicated to the Public Domain. michael@0: * http://creativecommons.org/publicdomain/zero/1.0/ michael@0: */ michael@0: onmessage = function(event) { michael@0: postMessage({event: "XMLHttpRequest", michael@0: status: (new XMLHttpRequest() instanceof XMLHttpRequest), michael@0: last: false }); michael@0: postMessage({event: "XMLHttpRequestUpload", michael@0: status: ((new XMLHttpRequest()).upload instanceof XMLHttpRequestUpload), michael@0: last: true }); michael@0: }