| Index: chrome/test/data/workers/debug_shared_worker_initialization.html
|
| ===================================================================
|
| --- chrome/test/data/workers/debug_shared_worker_initialization.html (revision 148361)
|
| +++ chrome/test/data/workers/debug_shared_worker_initialization.html (working copy)
|
| @@ -1,18 +0,0 @@
|
| -<html>
|
| -<body>
|
| -<div id=result></div>
|
| -<script>
|
| -function log(message)
|
| -{
|
| - document.getElementById("result").innerHTML += message + "<br>";
|
| -}
|
| -
|
| -var worker = new SharedWorker("debug_shared_worker_initialization.js");
|
| -worker.port.postMessage("ping");
|
| -worker.port.onmessage = function(event) {
|
| - log("worker replied: " + event.data);
|
| -}
|
| -</script>
|
| -
|
| -</body>
|
| -</html>
|
|
|