Revision 7a44da74a0dc0c711f89fc8ddbe55fb97e0b0e4a authored by kritisingh1 on 26 March 2018, 09:33:08 UTC, committed by kritisingh1 on 26 March 2018, 09:33:08 UTC
1 parent fe7370b
Raw File
nfc_insecure_context.html
<!DOCTYPE html>
<meta charset=utf-8>
<title>Web NFC Test: insecure context</title>
<link rel="author" title="Intel" href="http://www.intel.com"/>
<link rel="help" href="https://w3c.github.io/web-nfc/"/>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="resources/nfc_help.js"></script>

<h2>Note</h2>
<ol>
  <li>
    Run test is an insecure context, e.g. http://example.com/
  </li>
</ol>

<div id="log"></div>

<script>

"use strict";

promise_test(t => {
  return promise_rejects(t, 'SecurityError', navigator.nfc.push(test_text_data));
}, "nfc.push should fail with SecurityError in an insecure context.");

promise_test(t => {
  return promise_rejects(t, 'SecurityError', navigator.nfc.cancelPush());
}, "nfc.cancelPush should fail with SecurityError in an insecure context.");

promise_test(t => {
  return promise_rejects(t, 'SecurityError', navigator.nfc.watch(noop));
}, "nfc.watch should fail with SecurityError in an insecure context.");

promise_test(t => {
  return promise_rejects(t, 'SecurityError', navigator.nfc.cancelWatch());
}, "nfc.cancelWatch should fail with SecurityError in an insecure context.");

</script>
back to top