summaryrefslogtreecommitdiffstats
path: root/dom/indexedDB/test/unit/test_remove_objectStore.js
diff options
context:
space:
mode:
Diffstat (limited to 'dom/indexedDB/test/unit/test_remove_objectStore.js')
-rw-r--r--dom/indexedDB/test/unit/test_remove_objectStore.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/dom/indexedDB/test/unit/test_remove_objectStore.js b/dom/indexedDB/test/unit/test_remove_objectStore.js
index bdc16d9a6a..8d4cd17246 100644
--- a/dom/indexedDB/test/unit/test_remove_objectStore.js
+++ b/dom/indexedDB/test/unit/test_remove_objectStore.js
@@ -28,7 +28,7 @@ function* testSteps() {
for (let i = 0; i < 100; i++) {
request = objectStore.add({ foo: i });
request.onerror = errorHandler;
- request.onsuccess = function (event) {
+ request.onsuccess = function () {
if (++addedCount == 100) {
executeSoon(function () {
testGenerator.next();