mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-07 12:15:51 +00:00
47 lines
1.1 KiB
HTML
47 lines
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 happy RP. It has the expected callbacks for Firefox Accounts.
|
|
|
|
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",
|
|
onready: function() {},
|
|
onlogin: function() {},
|
|
onlogout: function() {},
|
|
});
|
|
} catch(ex) {
|
|
error = true;
|
|
}
|
|
postMessage({error: error});
|
|
}, false);
|
|
|
|
</script>
|
|
</body>
|
|
</html>
|