1
    2
    3
    4
    5
    6
    7
    8
    9
   10
   11
   12
   13
   14
   15
   16
   17
   18

content / test / data / workers / shared_worker_auth.html [blame]

<html>

<head>
<title>SharedWorker HTTP Auth Test</title>

<script src="worker_utils.js"></script>

<script>

var worker = new SharedWorker("worker_common.js");
worker.port.postMessage("auth");
</script>
</head>

<body>
<div id=statusPanel></div>
</body>
</html>