| Index: third_party/WebKit/LayoutTests/inspector/console/console-log-linkify-stack-in-errors.html
|
| diff --git a/third_party/WebKit/LayoutTests/inspector/console/console-log-linkify-stack-in-errors.html b/third_party/WebKit/LayoutTests/inspector/console/console-log-linkify-stack-in-errors.html
|
| index 38ee441d287ee1a4bb40b51a99d3655cbd0f15ad..0d9e044f00d2a4ec6bd3e83daef0c93af45fe347 100644
|
| --- a/third_party/WebKit/LayoutTests/inspector/console/console-log-linkify-stack-in-errors.html
|
| +++ b/third_party/WebKit/LayoutTests/inspector/console/console-log-linkify-stack-in-errors.html
|
| @@ -33,6 +33,17 @@ function domError()
|
|
|
| domError();
|
|
|
| +function logError()
|
| +{
|
| + try {
|
| + throw new Error("some error");
|
| + } catch (e) {
|
| + console.log(e);
|
| + }
|
| +}
|
| +
|
| +logError();
|
| +
|
| console.log("Error message without stacks http://www.chromium.org/");
|
|
|
| console.log("Error valid stack #2\n at http://www.chromium.org/boo.js:40:70\n at foo(http://www.chromium.org/foo.js:10:50)");
|
|
|