Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / crypto / subtle / ecdsa / cloneKey.html
blobd6128015335a6a2425ecef426e58f318403efd72
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 ECDSA keys');
12 jsTestIsAsync = true;
14 function testClonePublicKeys()
16 return testCloneEcPublicKeys('ECDSA', [[],['verify']]);
19 function testClonePrivateKeys()
21 return testCloneEcPrivateKeys('ECDSA', [['sign']])
24 testClonePublicKeys().then(testClonePrivateKeys).then(finishJSTest, failAndFinishJSTest);
25 </script>
26 </body>
27 </html>