diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 01:13:27 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 01:13:27 +0000 |
commit | 40a355a42d4a9444dc753c04c6608dade2f06a23 (patch) | |
tree | 871fc667d2de662f171103ce5ec067014ef85e61 /js/xpconnect/tests/chrome | |
parent | Adding upstream version 124.0.1. (diff) | |
download | firefox-40a355a42d4a9444dc753c04c6608dade2f06a23.tar.xz firefox-40a355a42d4a9444dc753c04c6608dade2f06a23.zip |
Adding upstream version 125.0.1.upstream/125.0.1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'js/xpconnect/tests/chrome')
4 files changed, 7 insertions, 7 deletions
diff --git a/js/xpconnect/tests/chrome/test_bug799348.xhtml b/js/xpconnect/tests/chrome/test_bug799348.xhtml index 91de48164f..99e36eaae9 100644 --- a/js/xpconnect/tests/chrome/test_bug799348.xhtml +++ b/js/xpconnect/tests/chrome/test_bug799348.xhtml @@ -22,10 +22,10 @@ https://bugzilla.mozilla.org/show_bug.cgi?id=799348 var gCalledOnload = false; var myObserver = { QueryInterface: ChromeUtils.generateQI(["nsIObserver"]), - observe(win, topic, data) { + observe(win, topic) { if (topic == "domwindowopened") { ok(!gCalledOnload, "domwindowopened notification fired before onload"); - win.addEventListener("load", function(evt) { + win.addEventListener("load", function() { gCalledOnload = true; win.close(); }); diff --git a/js/xpconnect/tests/chrome/test_cows.xhtml b/js/xpconnect/tests/chrome/test_cows.xhtml index 69d7d3e9e6..c6e27a2c47 100644 --- a/js/xpconnect/tests/chrome/test_cows.xhtml +++ b/js/xpconnect/tests/chrome/test_cows.xhtml @@ -91,7 +91,7 @@ function COWTests() { }); // Test function objects. - var func = function(x) { return 42; }; + var func = function() { return 42; }; func.foo = "foo property"; var funcCOW = getCOW(func); try { diff --git a/js/xpconnect/tests/chrome/test_windowProxyDeadWrapper.html b/js/xpconnect/tests/chrome/test_windowProxyDeadWrapper.html index a6f0ac95be..234a38ebeb 100644 --- a/js/xpconnect/tests/chrome/test_windowProxyDeadWrapper.html +++ b/js/xpconnect/tests/chrome/test_windowProxyDeadWrapper.html @@ -51,7 +51,7 @@ async function go() { // once the window is destroyed. frame.remove(); - TestUtils.topicObserved("outer-window-nuked", (subject, data) => { + TestUtils.topicObserved("outer-window-nuked", (subject) => { let id = subject.QueryInterface(Ci.nsISupportsPRUint64).data; return id == winID; }).then(() => { diff --git a/js/xpconnect/tests/chrome/test_xrayToJS.xhtml b/js/xpconnect/tests/chrome/test_xrayToJS.xhtml index cc009a2d55..9943055aea 100644 --- a/js/xpconnect/tests/chrome/test_xrayToJS.xhtml +++ b/js/xpconnect/tests/chrome/test_xrayToJS.xhtml @@ -360,7 +360,7 @@ https://bugzilla.mozilla.org/show_bug.cgi?id=933681 return typedArrayClasses.includes(classname); } - function propertyIsGetter(obj, name, classname) { + function propertyIsGetter(obj, name) { return !!Object.getOwnPropertyDescriptor(obj, name).get; } @@ -800,7 +800,7 @@ https://bugzilla.mozilla.org/show_bug.cgi?id=933681 checkThrows(function() { trickyObject.hasOwnProperty = 33; }, /shadow/, "Should reject shadowing of pre-existing inherited properties over Xrays"); - checkThrows(function() { Object.defineProperty(trickyObject, 'rejectedProp', { get() {}}); }, + checkThrows(function() { Object.defineProperty(trickyObject, 'rejectedProp', { get() { return undefined; }}); }, /accessor property/, "Should reject accessor property definition"); } @@ -1058,7 +1058,7 @@ for (var prop of props) { is(t.delete(null), true, "Key null can be deleted"); let values = []; - t.forEach((value, key) => values.push(value)); + t.forEach((value) => values.push(value)); is(values.toString(), "a,5", "forEach enumerates values correctly"); t.clear(); |