зеркало из https://github.com/mozilla/gecko-dev.git
47 строки
1.1 KiB
HTML
47 строки
1.1 KiB
HTML
|
<!--
|
||
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
||
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
||
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
||
|
-->
|
||
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<!--
|
||
|
RPs have the correct callbacks for BrowserID or Firefox Accounts
|
||
|
https://bugzilla.mozilla.org/show_bug.cgi?id=945363
|
||
|
-->
|
||
|
<head>
|
||
|
<meta charset="utf-8">
|
||
|
<title>Test app for bug 945363</title>
|
||
|
</head>
|
||
|
|
||
|
<body>
|
||
|
<script type="application/javascript;version=1.7">
|
||
|
|
||
|
// This is a bad Firefox Accounts RP. It has no onready callback.
|
||
|
// nsDOMIdentity will throw an exception.
|
||
|
|
||
|
function postMessage(message) {
|
||
|
SpecialPowers.wrap(window).parent
|
||
|
.postMessage(JSON.stringify(message), "*");
|
||
|
}
|
||
|
|
||
|
let error = false;
|
||
|
|
||
|
window.addEventListener('load', function onLoad(event) {
|
||
|
window.removeEventListener('load', onLoad);
|
||
|
try {
|
||
|
navigator.mozId.watch({
|
||
|
wantIssuer: "firefox-accounts",
|
||
|
onlogin: function() {},
|
||
|
onlogout: function() {},
|
||
|
});
|
||
|
} catch(ex) {
|
||
|
error = true;
|
||
|
}
|
||
|
postMessage({error: error});
|
||
|
}, false);
|
||
|
|
||
|
</script>
|
||
|
</body>
|
||
|
</html>
|