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"?>
<!--
-->
<!-- test results are displayed in the html:body -->
</body>
<!-- test code goes here -->
<script type="application/javascript"><![CDATA[
window.onerror = null;
SimpleTest.waitForExplicitFinish();
document.documentElement.setAttribute("onclick", "%");
is(1, 1, "Good, setting a bogus onclick did not throw.");
// Bonus test - make sure that flushPrefEnv is appropriately
// called at the end of the test. It would be nice if there were
// somewhere in the harness that this could live, but there isn't.
SpecialPowers.pushPrefEnv({set: [['testing.some_arbitrary_pref', true]]},
function() { SimpleTest.finish(); });
]]></script>
</window>