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

Side by Side Diff: content/test/data/workers/worker_tls_client_auth.html

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 unified diff | Download patch
OLDNEW
(Empty)
1 <html>
2
3 <head>
4 <title>Worker TLS Client Auth Test</title>
5
6 <script src="worker_utils.js"></script>
7
8 <script>
9
10 var url = decodeURIComponent(/url=([^;]*)/.exec(location.search)[1]);
11 var worker = getWorker("worker_common.js");
12 worker.onmessage = function(ev) {
13 if (ev.data == "done")
14 onSuccess();
15 };
16 worker.postMessage("tls-client-auth " + url);
17 </script>
18 </head>
19
20 <body>
21 <div id=statusPanel></div>
22 </body>
23 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698