summaryrefslogtreecommitdiffstats
path: root/testing/talos/talos/tests/tabpaint/framescript.js
diff options
context:
space:
mode:
Diffstat (limited to 'testing/talos/talos/tests/tabpaint/framescript.js')
-rw-r--r--testing/talos/talos/tests/tabpaint/framescript.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/testing/talos/talos/tests/tabpaint/framescript.js b/testing/talos/talos/tests/tabpaint/framescript.js
index 2d4d7149fc..3e209205b8 100644
--- a/testing/talos/talos/tests/tabpaint/framescript.js
+++ b/testing/talos/talos/tests/tabpaint/framescript.js
@@ -3,7 +3,7 @@
(function () {
addEventListener(
"load",
- loadevt => {
+ () => {
if (!content.location.pathname.endsWith("target.html")) {
return;
}
@@ -62,7 +62,7 @@
addEventListener(
"TabPaint:Ping",
- e => {
+ () => {
let evt = new content.CustomEvent("TabPaint:Pong", { bubbles: true });
content.dispatchEvent(evt);
},
@@ -79,7 +79,7 @@
true
);
- addMessageListener("TabPaint:OpenFromContent", msg => {
+ addMessageListener("TabPaint:OpenFromContent", () => {
let evt = new content.CustomEvent("TabPaint:OpenFromContent", {
bubbles: true,
});