| Index: chrome/test/data/extensions/api_test/bindings/exception_in_handler_should_not_crash/page.html
|
| diff --git a/chrome/test/data/extensions/api_test/bindings/exception_in_handler_should_not_crash/page.html b/chrome/test/data/extensions/api_test/bindings/exception_in_handler_should_not_crash/page.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..4377e75ca255895360f6241924dc54b1eb47e6bf
|
| --- /dev/null
|
| +++ b/chrome/test/data/extensions/api_test/bindings/exception_in_handler_should_not_crash/page.html
|
| @@ -0,0 +1,8 @@
|
| +<script>
|
| +chrome.tabs.create({}, function() {
|
| + throw new Error("tada");
|
| +});
|
| +chrome.tabs.create({}, function() {
|
| + chrome.test.notifyPass();
|
| +});
|
| +</script>
|
|
|