зеркало из https://github.com/mozilla/pjs.git
Bug 342662 - JS strings aren't properly escaped before being evaluated in the error console. r=gavin
This commit is contained in:
Родитель
9507caace9
Коммит
94a9265580
|
@ -122,7 +122,7 @@ function evaluateTypein()
|
|||
{
|
||||
var code = gTextBoxEval.value;
|
||||
var iframe = document.getElementById("Evaluator");
|
||||
iframe.setAttribute("src", "javascript: " + code);
|
||||
iframe.setAttribute("src", "javascript: " + encodeURIComponent(code));
|
||||
}
|
||||
|
||||
function displayResult()
|
||||
|
|
Загрузка…
Ссылка в новой задаче