| Index: chrome/test/data/workers/single_shared_worker.html
|
| ===================================================================
|
| --- chrome/test/data/workers/single_shared_worker.html (revision 148361)
|
| +++ chrome/test/data/workers/single_shared_worker.html (working copy)
|
| @@ -1,17 +0,0 @@
|
| -<html>
|
| -<body>
|
| -<div id=result></div>
|
| -<script>
|
| -function log(message)
|
| -{
|
| - document.getElementById("result").innerHTML += message + "<br>";
|
| -}
|
| -
|
| -var url = document.location.toString();
|
| -var id = parseInt(url.substr(url.search("id=") + 3));
|
| -log("Creating worker #" + id);
|
| -var worker = new SharedWorker("worker_common.js?id=" + id);
|
| -</script>
|
| -
|
| -</body>
|
| -</html>
|
|
|