blob: c1a9fb43de425f6a7f73f751d9b494878e4d9ef3 (
plain)
1
2
3
4
5
6
7
8
|
<script>
/* eslint-disable mozilla/no-define-cc-etc, no-undef */
const Cc = SpecialPowers.Cc;
const Ci = SpecialPowers.Ci;
let debug = Cc["@mozilla.org/xpcom/debug;1"].getService(Ci.nsIDebug2);
debug.assertion("failed assertion check", "false", "assert.html", 6);
</script>
|