Removed 'anonymous' from namespace, added whitespace in thread_restrictions.cc
[chromium-blink-merge.git] / content / test / data / workers / worker_tls_client_auth.html
blob02260cc0b2e663de7a2ce1926e610dcb7ec7d864
1 <html>
3 <head>
4 <title>Worker TLS Client Auth Test</title>
6 <script src="worker_utils.js"></script>
8 <script>
10 // TODO(davidben): When URLSearchParams is stable and implemented, switch this
11 // (and a lot of other test code) to it. https://crbug.com/303152
12 var url = decodeURIComponent(/url=([^&]*)/.exec(location.search)[1]);
13 var worker = getWorker("worker_common.js");
14 worker.onmessage = function(ev) {
15 if (ev.data == "done")
16 onSuccess();
18 worker.postMessage("tls-client-auth " + url);
19 </script>
20 </head>
22 <body>
23 <div id=statusPanel></div>
24 </body>
25 </html>