summaryrefslogtreecommitdiffstats
path: root/dom/filesystem/compat/tests
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 01:14:29 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 01:14:29 +0000
commitfbaf0bb26397aa498eb9156f06d5a6fe34dd7dd8 (patch)
tree4c1ccaf5486d4f2009f9a338a98a83e886e29c97 /dom/filesystem/compat/tests
parentReleasing progress-linux version 124.0.1-1~progress7.99u1. (diff)
downloadfirefox-fbaf0bb26397aa498eb9156f06d5a6fe34dd7dd8.tar.xz
firefox-fbaf0bb26397aa498eb9156f06d5a6fe34dd7dd8.zip
Merging upstream version 125.0.1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'dom/filesystem/compat/tests')
-rw-r--r--dom/filesystem/compat/tests/script_entries.js4
-rw-r--r--dom/filesystem/compat/tests/test_basic.html18
2 files changed, 11 insertions, 11 deletions
diff --git a/dom/filesystem/compat/tests/script_entries.js b/dom/filesystem/compat/tests/script_entries.js
index 7f52fe6bf2..74f3ee18bc 100644
--- a/dom/filesystem/compat/tests/script_entries.js
+++ b/dom/filesystem/compat/tests/script_entries.js
@@ -3,7 +3,7 @@
Cu.importGlobalProperties(["File", "Directory"]);
var tmpFile, tmpDir;
-addMessageListener("entries.open", function (e) {
+addMessageListener("entries.open", function () {
tmpFile = Services.dirsvc
.QueryInterface(Ci.nsIProperties)
.get("TmpD", Ci.nsIFile);
@@ -40,7 +40,7 @@ addMessageListener("entries.open", function (e) {
});
});
-addMessageListener("entries.delete", function (e) {
+addMessageListener("entries.delete", function () {
tmpFile.remove(true);
tmpDir.remove(true);
sendAsyncMessage("entries.deleted");
diff --git a/dom/filesystem/compat/tests/test_basic.html b/dom/filesystem/compat/tests/test_basic.html
index 4ad0c37d67..552827eb4f 100644
--- a/dom/filesystem/compat/tests/test_basic.html
+++ b/dom/filesystem/compat/tests/test_basic.html
@@ -168,7 +168,7 @@ function test_directoryEntry_getFile_simple() {
function(e) {
is(e.name, "foo.txt", "We have the right FileEntry.");
test_getParent(e, directoryEntry, /* nested */ false);
- }, function(e) {
+ }, function() {
ok(false, "This should not happen.");
});
}
@@ -178,7 +178,7 @@ function test_directoryEntry_getFile_deep() {
function(e) {
is(e.name, "bar..txt", "We have the right FileEntry.");
test_getParent(e, directoryEntry, /* nested */ true);
- }, function(e) {
+ }, function() {
ok(false, "This should not happen.");
});
}
@@ -228,7 +228,7 @@ function test_directoryEntry_getDirectory_simple() {
function(e) {
is(e.name, "subdir", "We have the right DirectoryEntry.");
test_getParent(e, directoryEntry, /* nested */ false);
- }, function(e) {
+ }, function() {
ok(false, "This should not happen.");
});
}
@@ -238,7 +238,7 @@ function test_directoryEntry_getDirectory_deep() {
function(e) {
is(e.name, "subsubdir", "We have the right DirectoryEntry.");
test_getParent(e, directoryEntry, /* nested */ true);
- }, function(e) {
+ }, function() {
ok(false, "This should not happen.");
});
}
@@ -308,7 +308,7 @@ function test_root_getFile_simple() {
function(e) {
is(e.name, fileEntry.name, "We have the right FileEntry.");
next();
- }, function(e) {
+ }, function() {
ok(false, "This should not happen.");
});
}
@@ -318,7 +318,7 @@ function test_root_getFile_deep() {
function(e) {
is(e.name, "bar..txt", "We have the right FileEntry.");
next();
- }, function(e) {
+ }, function() {
ok(false, "This should not happen.");
});
}
@@ -368,7 +368,7 @@ function test_root_getDirectory_simple() {
function(e) {
is(e.name, directoryEntry.name, "We have the right DirectoryEntry.");
next();
- }, function(e) {
+ }, function() {
ok(false, "This should not happen.");
});
}
@@ -378,7 +378,7 @@ function test_root_getDirectory_deep() {
function(e) {
is(e.name, "subsubdir", "We have the right DirectoryEntry.");
next();
- }, function(e) {
+ }, function() {
ok(false, "This should not happen.");
});
}
@@ -402,7 +402,7 @@ function test_getParent(entry, parentEntry, nested) {
} else {
test_getParent(e, parentEntry, false);
}
- }, function(e) {
+ }, function() {
ok(false, "This should not happen.");
});
}