Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(284)

Side by Side Diff: LayoutTests/fast/workers/resources/worker-script-error-handled.js

Issue 19693006: Pass column as 4th argument to WorkerGlobalScope.onerror handler (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 onerror = function(message, url, lineno) 1 onerror = function(message, url, lineno, column)
2 { 2 {
3 postMessage("onerror invoked for a script that has script error '" + message + "' at line " + lineno); 3 postMessage("onerror invoked for a script that has script error '" + message + "' at line " + lineno + ":" + column);
4 return true; 4 return true;
5 } 5 }
6 6
7 foo.bar = 0; 7 if (true) foo.bar = 0;
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/fast/workers/worker-script-error-expected.txt » ('j') | Source/core/dom/ErrorEvent.idl » ('J')

Powered by Google App Engine
This is Rietveld 408576698