| Index: chrome/test/data/workers/incognito_worker.html
|
| diff --git a/chrome/test/data/workers/incognito_worker.html b/chrome/test/data/workers/incognito_worker.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..d8ba3ace438f32ae3fea34eb27e44d9550449faa
|
| --- /dev/null
|
| +++ b/chrome/test/data/workers/incognito_worker.html
|
| @@ -0,0 +1,34 @@
|
| +<html>
|
| +
|
| +<head>
|
| +<title>Incognito Worker Test</title>
|
| +
|
| +<script src="worker_utils.js"></script>
|
| +
|
| +<script>
|
| +var worker = new SharedWorker("incognito_worker.js");
|
| +// Worker should only get a single connect event.
|
| +worker.port.onmessage = function(evt) {
|
| + if (evt.data != 1) {
|
| + // This instance should not be shared with other pre-existing instances,
|
| + // so the connect count should be 1.
|
| + onFailure();
|
| + return;
|
| + }
|
| + // Make a second worker, make sure it shares this instance
|
| + var worker = new SharedWorker("incognito_worker.js");
|
| + worker.port.onmessage = function(evt) {
|
| + if (evt.data == 2)
|
| + onSuccess();
|
| + else
|
| + onFailure();
|
| + };
|
| +};
|
| +
|
| +</script>
|
| +</head>
|
| +
|
| +<body>
|
| +<div id=statusPanel></div>
|
| +</body>
|
| +</html>
|
|
|