blob: 8662ab307661a3befa7da24a98a866c9987b9a27 [file] [log] [blame]
<!DOCTYPE html>
<title>Credential Manager: CredentialsContainer basics.</title>
<script src="../resources/testharness.js"></script>
<script src="../resources/testharnessreport.js"></script>
<script src="resources/interfaces.js"></script>
<script>
test(function () {
assert_equals(typeof CredentialsContainer, "function");
verify_interface('CredentialsContainer', navigator.credentials, {
'get': 'function'
});
}, 'Interfaces and attributes of CredentialsContainer');
</script>