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

Side by Side Diff: LayoutTests/crypto/subtle/ecdh/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/ec-cloneKey.js"></script>
7 </head>
8 <body>
9 <script>
10 description('Tests structured cloning of ECDH private and public keys');
11
12 jsTestIsAsync = true;
13
14 testCloneEcPublicKeys('ECDH', [[]]).then(runPrivateECDHTest, failAndFinishJSTest );
eroman 2015/03/05 19:58:50 I would suggest writing this as: function testClo
15
16 function runPrivateECDHTest()
17 {
18 testCloneEcPrivateKeys('ECDH', [['deriveBits']]).then(finishJSTest, failAndF inishJSTest);
19 }
20 </script>
21 </body>
22 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698