зеркало из https://github.com/mozilla/gecko-dev.git
44 строки
1.4 KiB
HTML
44 строки
1.4 KiB
HTML
<!DOCTYPE HTML>
|
|
<html>
|
|
<head>
|
|
<title>Verify mozbrowser APIs are allowed with browser permission</title>
|
|
<script type="text/javascript" src="chrome://mochikit/content/tests/SimpleTest/SimpleTest.js"></script>
|
|
<script type="text/javascript" src="chrome://mochikit/content/tests/SimpleTest/SpawnTask.js"></script>
|
|
<script type="text/javascript" src="mozbrowser_api_utils.js"></script>
|
|
<link rel="stylesheet" type="text/css" href="chrome://mochikit/content/tests/SimpleTest/test.css" />
|
|
</head>
|
|
|
|
<body>
|
|
<script type="application/javascript">
|
|
add_task(async function() {
|
|
await SpecialPowers.pushPrefEnv(
|
|
{ "set": [["dom.mozBrowserFramesEnabled", true],
|
|
["network.disable.ipc.security", true]] });
|
|
});
|
|
|
|
add_task(async function() {
|
|
// Create <iframe mozbrowser>
|
|
let frame = await loadFrame({
|
|
mozbrowser: "true",
|
|
// FIXME: Bug 1270790
|
|
remote: true
|
|
});
|
|
|
|
// Verify that mozbrowser APIs are accessible
|
|
for (let method in METHODS) {
|
|
let { alwaysFails } = METHODS[method];
|
|
if (alwaysFails) {
|
|
ok(!(method in frame), `frame does not have method ${method}, ` +
|
|
`needs more permissions`);
|
|
} else {
|
|
ok(method in frame, `frame has method ${method}`);
|
|
}
|
|
}
|
|
for (let attribute of ATTRIBUTES) {
|
|
ok(attribute in frame, `frame has attribute ${attribute}`);
|
|
}
|
|
});
|
|
</script>
|
|
</body>
|
|
</html>
|