Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(278)

Unified Diff: LayoutTests/crypto/exportKey.html

Issue 24467004: [webcrypto] Remove MockWebCrypto. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebase Created 7 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « LayoutTests/crypto/digest-expected.txt ('k') | LayoutTests/crypto/exportKey-expected.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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>
« no previous file with comments | « LayoutTests/crypto/digest-expected.txt ('k') | LayoutTests/crypto/exportKey-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698