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

Unified Diff: content/test/data/workers/worker_common.js

Issue 859213006: Cancel client auth requests when not promptable. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@client-auth-cancel-1
Patch Set: extension test Created 5 years, 10 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: content/test/data/workers/worker_common.js
diff --git a/content/test/data/workers/worker_common.js b/content/test/data/workers/worker_common.js
index 675de0de6d1b8fb4b59bee4151e440f86e25e41f..6a9e6b15609b03e4b7cf30b89d8d9e3edfa9d95d 100644
--- a/content/test/data/workers/worker_common.js
+++ b/content/test/data/workers/worker_common.js
@@ -29,5 +29,11 @@ onmessage = function(evt) {
} catch (ex) {
postMessage(ex);
}
+ } else if (/tls-client-auth.+/.test(evt.data)) {
+ try {
+ importScripts(evt.data.substr(16));
+ } catch (ex) {
+ }
+ postMessage("done");
}
}

Powered by Google App Engine
This is Rietveld 408576698