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

Side by Side Diff: LayoutTests/crypto/subtle/rsa-indexeddb.html

Issue 806913006: [WebCrypto] Move LayoutTests from crypto to crypto/subtle (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Update path for deserialize legacy tests Created 6 years 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
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <head> 3 <head>
4 <script src="../resources/js-test.js"></script> 4 <script src="../../resources/js-test.js"></script>
5 <script src="resources/common.js"></script> 5 <script src="resources/common.js"></script>
6 </head> 6 </head>
7 <body> 7 <body>
8 <script> 8 <script>
9 9
10 description("Test storing a private RSA key in IndexedDB, and retrieving it."); 10 description("Test storing a private RSA key in IndexedDB, and retrieving it.");
11 11
12 jsTestIsAsync = true; 12 jsTestIsAsync = true;
13 13
14 var privateKeyJSON = { 14 var privateKeyJSON = {
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
71 shouldBe("bytesToHexString(retrievedKey.algorithm.publicExponent)", "'010001'"); 71 shouldBe("bytesToHexString(retrievedKey.algorithm.publicExponent)", "'010001'");
72 shouldBe("retrievedKey.usages", '["sign"]'); 72 shouldBe("retrievedKey.usages", '["sign"]');
73 73
74 finishJSTest(); 74 finishJSTest();
75 } 75 }
76 } 76 }
77 }).catch(failAndFinishJSTest); 77 }).catch(failAndFinishJSTest);
78 </script> 78 </script>
79 </body> 79 </body>
80 </html> 80 </html>
OLDNEW
« no previous file with comments | « LayoutTests/crypto/subtle/rsa-importKey-badUsages-expected.txt ('k') | LayoutTests/crypto/subtle/rsa-indexeddb-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698