зеркало из https://github.com/mozilla/pjs.git
Bug 164664 JS console evaluation ignores leading whitespace
patch by neil@parkwaycc.co.uk r=caillon sr=bz
This commit is contained in:
Родитель
e941c36d6a
Коммит
e8d77d2171
|
@ -140,9 +140,11 @@ function evaluateTypein()
|
|||
|
||||
function displayResult()
|
||||
{
|
||||
var result = Evaluator.document.documentElement.lastChild.firstChild;
|
||||
if (result && result.data)
|
||||
gConsole.mCService.logStringMessage(result.data);
|
||||
var resultRange = Evaluator.document.createRange();
|
||||
resultRange.selectNode(Evaluator.document.documentElement);
|
||||
var result = resultRange.toString();
|
||||
if (result)
|
||||
gConsole.mCService.logStringMessage(result);
|
||||
// or could use appendMessage which doesn't persist
|
||||
}
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче