LibWeb: Import WPT RSA.importKey tests

This serves as a control for the changes in the next commits. I
originally had a regression, but did not notice because the tests were
missing.
This commit is contained in:
devgianlu 2024-12-14 11:46:32 +01:00 committed by Andreas Kling
commit 718b78dd43
Notes: github-actions[bot] 2024-12-16 10:36:41 +00:00
3 changed files with 1349 additions and 0 deletions

View file

@ -0,0 +1,16 @@
<!doctype html>
<meta charset=utf-8>
<title>WebCryptoAPI: importKey() for RSA keys</title>
<meta name="timeout" content="long">
<script>
self.GLOBAL = {
isWindow: function() { return true; },
isWorker: function() { return false; },
isShadowRealm: function() { return false; },
};
</script>
<script src="../../resources/testharness.js"></script>
<script src="../../resources/testharnessreport.js"></script>
<script src="../util/helpers.js"></script>
<div id=log></div>
<script src="../../WebCryptoAPI/import_export/rsa_importKey.https.any.js"></script>

File diff suppressed because one or more lines are too long