зеркало из https://github.com/mozilla/gecko-dev.git
40 строки
1.3 KiB
HTML
40 строки
1.3 KiB
HTML
<!DOCTYPE html>
|
|
<meta charset=utf-8>
|
|
<head>
|
|
<title>Test for Multiple Keys for FIDO U2F</title>
|
|
<script type="text/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
|
|
<script src="u2futil.js"></script>
|
|
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
|
|
</head>
|
|
<body>
|
|
|
|
<h1>Test Multiple Keys for FIDO U2F</h1>
|
|
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1333592">Mozilla Bug 1333592</a>
|
|
|
|
<script class="testbody" type="text/javascript">
|
|
"use strict";
|
|
|
|
/** Test for XBL scope behavior. **/
|
|
SimpleTest.waitForExplicitFinish();
|
|
|
|
// Embed the real test. It will take care of everything else.
|
|
//
|
|
// This is necessary since the U2F object on window is hidden behind a preference
|
|
// and window won't pick up changes by pref without a reload.
|
|
SpecialPowers.pushPrefEnv({"set": [["security.webauth.u2f", true],
|
|
["security.webauth.u2f_enable_softtoken", true],
|
|
["security.webauth.u2f_enable_usbtoken", false]]},
|
|
function() {
|
|
// listen for messages from the test harness
|
|
window.addEventListener("message", handleEventMessage);
|
|
document.getElementById('testing_frame').src = "https://example.com/tests/dom/u2f/tests/frame_multiple_keys.html";
|
|
});
|
|
</script>
|
|
|
|
<div id="framediv">
|
|
<iframe id="testing_frame"></iframe>
|
|
</div>
|
|
|
|
</body>
|
|
</html>
|