mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-24 17:37:30 +09:00
import FIREFOX_52_6_0esr_RELEASE from mozilla-esr52 hg repo
This commit is contained in:
commit
dcd9973243
150858 changed files with 23884658 additions and 0 deletions
60
dom/u2f/tests/frame_appid_facet_insecure.html
Normal file
60
dom/u2f/tests/frame_appid_facet_insecure.html
Normal file
|
|
@ -0,0 +1,60 @@
|
|||
<!DOCTYPE html>
|
||||
<meta charset=utf-8>
|
||||
<head>
|
||||
<script src="u2futil.js"></script>
|
||||
</head>
|
||||
<body>
|
||||
<p>Test for AppID / FacetID behavior for FIDO Universal Second Factor</p>
|
||||
<script class="testbody" type="text/javascript">
|
||||
"use strict";
|
||||
|
||||
local_is(window.location.origin, "http://mochi.test:8888", "Is loaded correctly");
|
||||
|
||||
var version = "U2F_V2";
|
||||
var challenge = new Uint8Array(16);
|
||||
|
||||
local_expectThisManyTests(5);
|
||||
|
||||
u2f.register(null, [{
|
||||
version: version,
|
||||
challenge: bytesToBase64UrlSafe(challenge),
|
||||
}], [], function(res){
|
||||
local_isnot(res.errorCode, 0, "Insecure origin disallowed for null AppID");
|
||||
local_completeTest();
|
||||
});
|
||||
|
||||
u2f.register("", [{
|
||||
version: version,
|
||||
challenge: bytesToBase64UrlSafe(challenge),
|
||||
}], [], function(res){
|
||||
local_isnot(res.errorCode, 0, "Insecure origin disallowed for empty AppID");
|
||||
local_completeTest();
|
||||
});
|
||||
|
||||
u2f.register("http://example.com/appId", [{
|
||||
version: version,
|
||||
challenge: bytesToBase64UrlSafe(challenge),
|
||||
}], [], function(res){
|
||||
local_isnot(res.errorCode, 0, "Insecure origin disallowed for HTTP AppID");
|
||||
local_completeTest();
|
||||
});
|
||||
|
||||
u2f.register("https://example.com/appId", [{
|
||||
version: version,
|
||||
challenge: bytesToBase64UrlSafe(challenge),
|
||||
}], [], function(res){
|
||||
local_isnot(res.errorCode, 0, "Insecure origin disallowed for HTTPS AppID from HTTP origin");
|
||||
local_completeTest();
|
||||
});
|
||||
|
||||
u2f.register(window.location.origin + "/otherAppId", [{
|
||||
version: version,
|
||||
challenge: bytesToBase64UrlSafe(challenge),
|
||||
}], [], function(res){
|
||||
local_isnot(res.errorCode, 0, "Insecure origin disallowed for HTTP origin");
|
||||
local_completeTest();
|
||||
});
|
||||
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
Loading…
Add table
Add a link
Reference in a new issue