summaryrefslogtreecommitdiffstats
path: root/toolkit/components/extensions/test/xpcshell/data/file_script_good.js
blob: bf47fb36d2b3d8c40b863cef8a523432c3d2f394 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
"use strict";

window.success = window.success ? window.success + 1 : 1;
window.addEventListener(
  "load",
  () => {
    let el = document.createElement("div");
    el.setAttribute("id", "good");
    document.body.appendChild(el);
  },
  { once: true }
);