| Index: LayoutTests/crypto/exportKey.html
|
| diff --git a/LayoutTests/crypto/exportKey.html b/LayoutTests/crypto/exportKey.html
|
| index 82649deca0d53e0ba0cc033975930374cabc79f9..5073090814b814c7cf27411812e41ba46ff086bc 100644
|
| --- a/LayoutTests/crypto/exportKey.html
|
| +++ b/LayoutTests/crypto/exportKey.html
|
| @@ -28,15 +28,7 @@ importTestKeys().then(function(result) {
|
| shouldBe("keys.aesCbcJustDecrypt.extractable", "false")
|
| shouldThrow("crypto.subtle.exportKey('raw', keys.aesCbcJustDecrypt)");
|
|
|
| - return crypto.subtle.exportKey('raw', keys.hmacSha1);
|
| -}).then(function(result) {
|
| - keyData = result;
|
| - shouldBe("keyData.byteLength", "3");
|
| -
|
| - return crypto.subtle.exportKey('pkcs8', keys.hmacSha1);
|
| -}).then(function(result) {
|
| - keyData = result;
|
| - shouldBe("keyData.byteLength", "5");
|
| + // TODO(eroman): exportKey() is not implemented.
|
| }).then(finishJSTest, failAndFinishJSTest);
|
|
|
| </script>
|
|
|