summaryrefslogtreecommitdiffstats
path: root/dom/xhr/tests/xhrAbort_worker.js
diff options
context:
space:
mode:
Diffstat (limited to 'dom/xhr/tests/xhrAbort_worker.js')
-rw-r--r--dom/xhr/tests/xhrAbort_worker.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/dom/xhr/tests/xhrAbort_worker.js b/dom/xhr/tests/xhrAbort_worker.js
index 6b82241d68..e922f8259f 100644
--- a/dom/xhr/tests/xhrAbort_worker.js
+++ b/dom/xhr/tests/xhrAbort_worker.js
@@ -57,11 +57,11 @@ function runTest() {
events.push(str);
}
- xhr.onerror = function (event) {
+ xhr.onerror = function () {
throw new Error("Error: " + xhr.statusText);
};
- xhr.onload = function (event) {
+ xhr.onload = function () {
throw new Error("Shouldn't have gotten load event!");
};