blob: 8a08fe0a70edaebb542a4d2ec3f033476fc8b865 [file] [log] [blame]
<!DOCTYPE html>
<title>NFCErrorEvent constructor</title>
<link rel="help" href="https://w3c.github.io/web-nfc/#dom-nfcerrorevent">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script>
test(() => {
assert_equals(NFCErrorEvent.length, 2);
assert_throws(new TypeError, () => new NFCErrorEvent('error'));
}, 'NFCErrorEvent constructor without init dict');
</script>