зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1333044 - "Enable eslint no-undef for services/" a=tomcat
This commit is contained in:
Родитель
ff34e66ec7
Коммит
605ae8736f
|
@ -47,7 +47,7 @@ function base64UrlDecode(s) {
|
|||
s += "=";
|
||||
break; // One pad char
|
||||
default:
|
||||
throw new InputException("Illegal base64url string!");
|
||||
throw new Error("Illegal base64url string!");
|
||||
}
|
||||
|
||||
// With correct padding restored, apply the standard base64 decoder
|
||||
|
|
|
@ -62,7 +62,7 @@ function test_rsa() {
|
|||
do_test_pending();
|
||||
function checkRSA(err, kpo) {
|
||||
do_check_neq(kpo, undefined);
|
||||
log(kpo.serializedPublicKey);
|
||||
do_print(kpo.serializedPublicKey);
|
||||
let pk = JSON.parse(kpo.serializedPublicKey);
|
||||
do_check_eq(pk.algorithm, "RS");
|
||||
/* TODO
|
||||
|
@ -92,7 +92,7 @@ function test_dsa() {
|
|||
do_test_pending();
|
||||
function checkDSA(err, kpo) {
|
||||
do_check_neq(kpo, undefined);
|
||||
log(kpo.serializedPublicKey);
|
||||
do_print(kpo.serializedPublicKey);
|
||||
let pk = JSON.parse(kpo.serializedPublicKey);
|
||||
do_check_eq(pk.algorithm, "DS");
|
||||
/* TODO
|
||||
|
|
Загрузка…
Ссылка в новой задаче