Bug 853188 - Use the url and line number passed to window.onerror, r=mdas

This commit is contained in:
Jonathan Griffin 2013-04-05 15:25:46 -07:00
Родитель 7c77539321
Коммит cf621af96f
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -519,7 +519,7 @@ function executeWithCallback(msg, useFinish) {
originalOnError = curWindow.onerror;
curWindow.onerror = function errHandler(errMsg, url, line) {
sandbox.asyncComplete(errMsg, 17, null, asyncTestCommandId);
sandbox.asyncComplete(errMsg, 17, "@" + url + ", line " + line, asyncTestCommandId);
curWindow.onerror = originalOnError;
};