RESOLVED FIXED 51044
[V8] Get rid of delayed exception reporting in V8ConsoleMessage.cpp
https://bugs.webkit.org/show_bug.cgi?id=51044
Summary [V8] Get rid of delayed exception reporting in V8ConsoleMessage.cpp
Yury Semikhatsky
Reported 2010-12-14 10:22:07 PST
Get rid of delayed exception reporting in V8ConsoleMessage.cpp. All exceptions/errors can be reported immediately.
Attachments
Patch (22.76 KB, patch)
2010-12-14 10:26 PST, Yury Semikhatsky
abarth: review+
abarth: commit-queue-
Patch that I'm going to land. (22.25 KB, patch)
2011-01-20 04:25 PST, Yury Semikhatsky
no flags
Yury Semikhatsky
Comment 1 2010-12-14 10:26:56 PST
Adam Barth
Comment 2 2010-12-14 12:20:05 PST
Comment on attachment 76545 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=76545&action=review Great. I'm glad to be rid of this complexity. > WebCore/bindings/v8/V8DOMWindowShell.cpp:102 > + Document* document = frame->document(); > + if (!document) > + return; document can never be null. > WebCore/bindings/v8/V8DOMWindowShell.cpp:116 > + String resourceNameString = useURL ? frame->document()->url() : toWebCoreString(resourceName); You've already got document in a local variable. No need to go back to the Frame.
Yury Semikhatsky
Comment 3 2011-01-20 04:25:01 PST
Created attachment 79578 [details] Patch that I'm going to land. All comments have been addressed.
Yury Semikhatsky
Comment 4 2011-01-20 04:31:50 PST
Note You need to log in before you can comment on or make changes to this bug.