Source code

Revision control

Copy as Markdown

Other Tools

Test Info: Warnings

<?xml version="1.0"?>
<?xml-stylesheet href="chrome://global/skin" type="text/css"?>
type="text/css"?>
<!--
-->
<window title="Mozilla Bug 895340"
<!-- test results are displayed in the html:body -->
target="_blank">Mozilla Bug 895340 </a>
</body>
<!-- test code goes here -->
<script type="application/javascript"><![CDATA[
SimpleTest.waitForExplicitFinish();
SimpleTest.expectUncaughtException();
var finished = false;
let listener = {
QueryInterface: ChromeUtils.generateQI(["nsIConsoleListener"])
};
listener.observe = function(aMessage) {
if (aMessage.message.includes("Will you report me?") && !finished) {
finished = true;
ok(true, "exception reported");
Services.console.unregisterListener(listener);
SimpleTest.finish();
}
};
Services.console.registerListener(listener);
/* Throw an exception and verify that it gets reported. */
let foo_obs = function() {
throw new Error("Will you report me?");
};
Services.obs.addObserver(foo_obs, "foo");
Services.obs.notifyObservers(null, "foo", "foo");
Services.obs.removeObserver(foo_obs, "foo");
]]></script>
</window>