diff options
author | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
---|---|---|
committer | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
commit | 5f8de423f190bbb79a62f804151bc24824fa32d8 (patch) | |
tree | 10027f336435511475e392454359edea8e25895d /dom/u2f/tests/test_appid_facet_subdomain.html | |
parent | 49ee0794b5d912db1f95dce6eb52d781dc210db5 (diff) | |
download | UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.gz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.lz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.xz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.zip |
Add m-esr52 at 52.6.0
Diffstat (limited to 'dom/u2f/tests/test_appid_facet_subdomain.html')
-rw-r--r-- | dom/u2f/tests/test_appid_facet_subdomain.html | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/dom/u2f/tests/test_appid_facet_subdomain.html b/dom/u2f/tests/test_appid_facet_subdomain.html new file mode 100644 index 000000000..8576dba27 --- /dev/null +++ b/dom/u2f/tests/test_appid_facet_subdomain.html @@ -0,0 +1,34 @@ +<!DOCTYPE html> +<meta charset=utf-8> +<head> + <title>Test for AppID / FacetID behavior for FIDO Universal Second Factor</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> +<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1231681">Mozilla Bug 1231681</a> + +<div id="framediv"> + <iframe id="testing_frame"></iframe> +</div> + +<pre id="log"></pre> + +<script class="testbody" type="text/javascript"> + +SimpleTest.waitForExplicitFinish(); + +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, false); + document.getElementById('testing_frame').src = "https://test1.example.com/tests/dom/u2f/tests/frame_appid_facet_subdomain.html"; +}); + +</script> + +</body> +</html> |