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: mmenke comments
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.
On 2015/02/17 19:50:14, mmenke wrote:
> The tests really use ";" and not "&" to separate arguments?
Switched it to & since that's a bit more standard. (FWIW, I think CGI scripts
normally accept both.)
Someday we'll have this thing, but Chrome doesn't have an implementation yet:
https://url.spec.whatwg.org/#interface-urlsearchparams
Actually, it looks like that thing as spec'd only splits on &, so let's stick
with that.
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);
mmenke
2015/02/17 19:50:14
Could we have some comments here... "tls-client-au
Could we have some comments here... "tls-client-auth" doesn't seem to appear in
worker_common.js, but searching for "tls-client-auth" and "worker" doesn't
produce anything, so I have no idea what this does.
davidben
2015/02/18 22:31:45
Hrm? It's in worker_common.js. I added it.
https:
On 2015/02/17 19:50:14, mmenke wrote:
> Could we have some comments here... "tls-client-auth" doesn't seem to appear
in
> worker_common.js, but searching for "tls-client-auth" and "worker" doesn't
> produce anything, so I have no idea what this does.
On 2015/02/18 22:31:45, David Benjamin wrote:
> On 2015/02/17 19:50:14, mmenke wrote:
> > Could we have some comments here... "tls-client-auth" doesn't seem to appear
> in
> > worker_common.js, but searching for "tls-client-auth" and "worker" doesn't
> > produce anything, so I have no idea what this does.
>
> Hrm? It's in worker_common.js. I added it.
>
>
https://codereview.chromium.org/859213006/diff/320001/content/test/data/worke...
Oops...Forgot to remove that comment once I found it.
17 </script>
18 </head>
19
20 <body>
21 <div id=statusPanel></div>
mmenke
2015/02/17 19:50:14
Per HTML style guide, names should be all lower ca
Issue 859213006: Cancel client auth requests when not promptable.
(Closed)
Created 5 years, 10 months ago by davidben
Modified 5 years, 9 months ago
Reviewers: mmenke, mattm, pneubeck (no reviews), sgurun-gerrit only, sky, gunsch, dougsteed, asargent_no_longer_on_chrome, Ryan Sleevi, Yaron, Nico
Base URL: https://chromium.googlesource.com/chromium/src.git@client-auth-cancel-1
Comments: 111