Bug 736905. (Av1) test_ui_modalprompt.html needs to check "prompts.tab_modal.enabled" preference. r=surkov.alexander.

This commit is contained in:
Serge Gautherie 2012-03-20 20:16:15 +01:00
Родитель de07cf5507
Коммит 7c3e3c5d25
1 изменённых файлов: 14 добавлений и 2 удалений

Просмотреть файл

@ -22,6 +22,14 @@
src="../browser.js"></script>
<script type="application/javascript">
function hasTabModalPrompts() {
try {
return SpecialPowers.getBoolPref("prompts.tab_modal.enabled");
} catch (ex) {
return false;
}
}
function showAlert()
{
this.eventSeq = [
@ -72,8 +80,12 @@
gQueue.invoke(); // will call SimpleTest.finish()
}
SimpleTest.waitForExplicitFinish();
openBrowserWindow(doTests);
if (!hasTabModalPrompts()) {
todo(false, "Test disabled when tab modal prompts are not enabled.");
} else {
SimpleTest.waitForExplicitFinish();
openBrowserWindow(doTests);
}
</script>
</head>