| Index: LayoutTests/crypto/digest.html
|
| diff --git a/LayoutTests/crypto/digest.html b/LayoutTests/crypto/digest.html
|
| index 2357bad4ea870e7d70f998158c84d949e3c39b53..439d77df0066f7beae8afc46100d37e78bbf14b9 100644
|
| --- a/LayoutTests/crypto/digest.html
|
| +++ b/LayoutTests/crypto/digest.html
|
| @@ -180,6 +180,13 @@ allTests = [
|
|
|
| function()
|
| {
|
| + debug("SHA-256 rejects (dummy implementation)");
|
| + op = crypto.subtle.digest({name: 'sha-256'});
|
| + op.finish().then(resultHandler, rejectHandler);
|
| + },
|
| +
|
| + function()
|
| + {
|
| op = crypto.subtle.digest({name: 'sha-1'});
|
| shouldThrow("op.process(null)");
|
| shouldThrow("op.process()");
|
|
|