Source code
Revision control
Copy as Markdown
Other Tools
Test Info: Warnings
- This test gets skipped with pattern: os == 'android'
- Manifest: js/xpconnect/tests/chrome/chrome.toml
<?xml version="1.0"?>
type="text/css"?>
<!--
-->
<!-- test results are displayed in the html:body -->
</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>