Chromium Code Reviews| Index: third_party/WebKit/LayoutTests/inspector-protocol/worker/resources/worker-with-throw.js |
| diff --git a/third_party/WebKit/LayoutTests/inspector-protocol/worker/resources/worker-with-throw.js b/third_party/WebKit/LayoutTests/inspector-protocol/worker/resources/worker-with-throw.js |
| deleted file mode 100644 |
| index d0c8d2c17e5dc6c8e7dec96894589c4910f37a61..0000000000000000000000000000000000000000 |
| --- a/third_party/WebKit/LayoutTests/inspector-protocol/worker/resources/worker-with-throw.js |
| +++ /dev/null |
| @@ -1,21 +0,0 @@ |
| -function foo() |
| -{ |
| - throw new Error(); |
| -} |
| - |
| -function boo1() |
| -{ |
| - foo(); |
| -} |
| - |
| -function boo2() |
| -{ |
| - foo(); |
| -} |
| - |
| -onmessage = function(event) { |
| - if (event.data === 42) |
| - boo1(); |
| - else |
| - boo2(); |
| -}; |