Source code

Revision control

Copy as Markdown

Other Tools

Test Info: Warnings

<?xml version="1.0"?>
<?xml-stylesheet type="text/css" href="chrome://global/skin"?>
<?xml-stylesheet type="text/css" href="chrome://mochikit/content/tests/SimpleTest/test.css"?>
<!--
-->
<window title="Mozilla Bug 795275"
<!-- test results are displayed in the html:body -->
target="_blank">Mozilla Bug 795275</a>
</body>
<!-- test code goes here -->
<script type="application/javascript">
<![CDATA[
/** Test for Warning in content scopes about Components. **/
SimpleTest.waitForExplicitFinish();
SimpleTest.executeSoon(function() {
SpecialPowers.pushPrefEnv({set: [["dom.use_components_shim", true]]},
startLoad)
});
function startLoad() {
for (var i = 1; i <= document.getElementsByTagName('iframe').length; ++i) {
var frame = document.getElementById('frame' + i);
frame.onload = frameLoaded;
}
}
// Set up our console listener.
var gWarnings = 0;
function onWarning(consoleMessage) {
if (/soon be removed/.test(consoleMessage.message))
gWarnings++;
}
var gListener = {
observe: onWarning,
QueryInterface: ChromeUtils.generateQI(["nsIConsoleListener"])
};
Services.console.registerListener(gListener);
// Wait for all four child frame to load.
var gLoadCount = 0;
function frameLoaded() {
if (++gLoadCount == document.getElementsByTagName('iframe').length)
go();
}
function getWin(id) { return document.getElementById(id).contentWindow.wrappedJSObject; }
function go() {
getWin('frame1').touchComponents();
getWin('frame2').touchInterfaces();
getWin('frame4').touchComponents();
getWin('frame4').touchInterfaces();
// Warnings are dispatched async, so stick ourselves at the end of the event
// queue.
setTimeout(done, 0);
}
function done() {
Services.console.unregisterListener(gListener);
is(gWarnings, 3, "Got the right number of warnings");
SimpleTest.finish();
}
]]>
</script>
<iframe id="frame1"/>
<iframe id="frame2"/>
<iframe id="frame3"/>
<iframe id="frame4"/>
</window>