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

Unified Diff: LayoutTests/crypto/resources/worker-infinite-loop-generateKey.js

Issue 263163006: Fix crash when ExecutionContext is torn down before a crypto operation has completed. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: fix comment typo Created 6 years, 7 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 side-by-side diff with in-line comments
Download patch
Index: LayoutTests/crypto/resources/worker-infinite-loop-generateKey.js
diff --git a/LayoutTests/crypto/resources/worker-infinite-loop-generateKey.js b/LayoutTests/crypto/resources/worker-infinite-loop-generateKey.js
new file mode 100644
index 0000000000000000000000000000000000000000..6d07d2adb18cf60e0f965f485abd9254902a5956
--- /dev/null
+++ b/LayoutTests/crypto/resources/worker-infinite-loop-generateKey.js
@@ -0,0 +1,20 @@
+importScripts('common.js');
+
+function continuouslyGenerateRsaKey()
+{
+ var extractable = false;
+ var usages = ['encrypt', 'decrypt'];
+ // Note that the modulus length is small.
+ var algorithm = {name: "RSAES-PKCS1-v1_5", modulusLength: 512, publicExponent: hexStringToUint8Array("010001")};
+
+ return crypto.subtle.generateKey(algorithm, extractable, usages).then(function(result) {
+ // Infinite recursion intentional!
+ return continuouslyGenerateRsaKey();
+ });
+}
+
+// Starts a Promise which continually generates new RSA keys.
+var unusedPromise = continuouslyGenerateRsaKey();
+
+// Inform the outer script that the worker started.
+postMessage("Worker started");
« no previous file with comments | « LayoutTests/crypto/abandon-crypto-operation-expected.txt ('k') | Source/bindings/v8/ScriptPromiseResolverWithContext.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698