mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-10-31 22:25:30 +00:00
f31e42ab09
We no longer use whitelist to control the permission. Test against no permission instead. --HG-- extra : rebase_source : 8fd77b2588a07bc17363b49d104b3b08ee2293a5
50 lines
1.3 KiB
HTML
50 lines
1.3 KiB
HTML
<!DOCTYPE HTML>
|
|
<html>
|
|
<!--
|
|
https://bugzilla.mozilla.org/show_bug.cgi?id=710231
|
|
-->
|
|
<head>
|
|
<title>Test for Bug 710231</title>
|
|
<script type="application/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
|
|
<script type="application/javascript" src="browserElementTestHelpers.js"></script>
|
|
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/>
|
|
</head>
|
|
<body>
|
|
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=710231">Mozilla Bug 710231</a>
|
|
|
|
<!--
|
|
Test that an iframe with the |mozbrowser| attribute does not emit
|
|
mozbrowserX events when this page does not have the "browser" permission.
|
|
-->
|
|
|
|
<script type="application/javascript;version=1.7">
|
|
"use strict";
|
|
|
|
SimpleTest.waitForExplicitFinish();
|
|
|
|
function runTest() {
|
|
var iframe = document.createElement('iframe');
|
|
SpecialPowers.wrap(iframe).mozbrowser = true;
|
|
document.body.appendChild(iframe);
|
|
|
|
iframe.addEventListener('mozbrowserloadstart', function() {
|
|
ok(false, 'Should not send mozbrowserloadstart event.');
|
|
});
|
|
|
|
iframe.addEventListener('load', function() {
|
|
ok(true, 'Got iframe load event.');
|
|
SimpleTest.finish();
|
|
});
|
|
|
|
iframe.src = browserElementTestHelpers.emptyPage1;
|
|
}
|
|
|
|
browserElementTestHelpers.setEnabledPref(true);
|
|
SpecialPowers.removePermission("browser", document);
|
|
addEventListener('testready', runTest);
|
|
|
|
</script>
|
|
|
|
</body>
|
|
</html>
|