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

Side by Side Diff: LayoutTests/crypto/subtle/rsassa-pkcs1-v1_5/cloneKey.html

Issue 958353003: [WebCrypto] Move cloneKey test to respective algorithm directory (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 9 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 unified diff | Download patch
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <script src="../../../resources/js-test.js"></script>
5 <script src="../resources/common.js"></script>
6 <script src="../resources/rsa-cloneKey.js"></script>
7 <script src="../resources/keys.js"></script>
8 </head>
9 <body>
10 <script>
11 description('Tests structured cloning of RSA private and public keys (with a has h)');
eroman 2015/03/05 19:58:51 How about renaming this to: "Tests structured clo
12
13 jsTestIsAsync = true;
14
15 testCloneRSAPublicKeys('RSASSA-PKCS1-v1_5', [[], ['verify']], [kKeyData.rsa2, kK eyData.rsa3]).then(runRSAPrivateTests, failAndFinishJSTest)
16
17 function runRSAPrivateTests()
18 {
19 testCloneRSAPrivateKeys('RSASSA-PKCS1-v1_5', [['sign']], [kKeyData.rsa1, kKe yData.rsa4]).then(finishJSTest, failAndFinishJSTest)
20 }
21 </script>
22 </body>
23 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698