test runner: closes #3048. The text from the tests, is html-escaped.
This commit is contained in:
parent
21d669135d
commit
febe463cc2
|
@ -133,7 +133,7 @@ function test(name, callback, nowait) {
|
||||||
for ( var i = 0; i < _config.Test.length; i++ ) {
|
for ( var i = 0; i < _config.Test.length; i++ ) {
|
||||||
var li = document.createElement("li");
|
var li = document.createElement("li");
|
||||||
li.className = _config.Test[i][0] ? "pass" : "fail";
|
li.className = _config.Test[i][0] ? "pass" : "fail";
|
||||||
li.innerHTML = _config.Test[i][1];
|
li.appendChild( document.createTextNode(_config.Test[i][1]) );
|
||||||
ol.appendChild( li );
|
ol.appendChild( li );
|
||||||
|
|
||||||
_config.stats.all++;
|
_config.stats.all++;
|
||||||
|
|
Loading…
Reference in a new issue