Index: third_party/WebKit/LayoutTests/inspector/console/console-eval-throw-expected.txt |
diff --git a/third_party/WebKit/LayoutTests/inspector/console/console-eval-throw-expected.txt b/third_party/WebKit/LayoutTests/inspector/console/console-eval-throw-expected.txt |
index d5d8e5fde826344ec1c0b8241a69bfdab0ebdcca..45906a2c7645b58b1bf43f08abe54ecef6cdb4f3 100644 |
--- a/third_party/WebKit/LayoutTests/inspector/console/console-eval-throw-expected.txt |
+++ b/third_party/WebKit/LayoutTests/inspector/console/console-eval-throw-expected.txt |
@@ -4,25 +4,25 @@ Tests that evaluating 'throw undefined|1|string|object|Error' in the console won |
Running: testThrowUndefined |
throw undefined |
VM:1 Uncaught undefined |
-(anonymous function) @ VM:1 |
+(anonymous) @ VM:1 |
Running: testThrowNumber |
throw 1 |
VM:1 Uncaught 1 |
-(anonymous function) @ VM:1 |
+(anonymous) @ VM:1 |
Running: testThrowString |
throw 'asdf' |
VM:1 Uncaught asdf |
-(anonymous function) @ VM:1 |
+(anonymous) @ VM:1 |
Running: testThrowObject |
throw {a:42} |
VM:1 Uncaught Object {a: 42} |
-(anonymous function) @ VM:1 |
+(anonymous) @ VM:1 |
Running: testThrowError |
throw new Error('asdf') |
VM:1 Uncaught Error: asdf |
-(anonymous function) @ VM:1 |
+(anonymous) @ VM:1 |