Bug 942411 - Use SpecialPowers.pushPermissions to make sure the permission is set before test run. r=smaug

This commit is contained in:
Kan-Ru Chen (陳侃如) 2014-10-03 18:31:22 +08:00
Родитель e9e1dd2072
Коммит f698c9e158
1 изменённых файлов: 11 добавлений и 8 удалений

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

@ -140,14 +140,17 @@
iframe.setAttribute("src", "file_ignoreuserfocus.html");
}
addEventListener("load", function() {
SpecialPowers.addPermission("browser", true, document);
SpecialPowers.pushPrefEnv({
"set": [
["dom.mozBrowserFramesEnabled", true]
]
}, function() {
SimpleTest.waitForFocus(runTest);
});
SpecialPowers.pushPermissions(
[{'type': 'browser', 'allow': true, 'context': document}],
function() {
SpecialPowers.pushPrefEnv({
"set": [
["dom.mozBrowserFramesEnabled", true]
]
}, function() {
SimpleTest.waitForFocus(runTest);
});
});
});
</script>
</body>