X-Git-Url: https://adrianiainlam.tk/git/?a=blobdiff_plain;f=auto_tests%2Fmisc%2Flocal.html;h=89c7efca48fc9c69108c2bb2372fdfeb117dd7d2;hb=f34f95d1f2fe3adcc0bbe578368740afba513d9f;hp=877d272fcb8fcea19704b05533c2caf077769a09;hpb=890e2a375555ef65c4b8eec3cea265578116deae;p=dygraphs.git diff --git a/auto_tests/misc/local.html b/auto_tests/misc/local.html index 877d272..89c7efc 100644 --- a/auto_tests/misc/local.html +++ b/auto_tests/misc/local.html @@ -128,7 +128,7 @@ var summary = { failed: 0, passed: 0 }; postResults(results, summary); resultsDiv.appendChild(document.createElement("hr")); - document.getElementById('summary').innerText = "(" + summary.failed + " failed, " + summary.passed + " passed)"; + document.getElementById('summary').innerHTML = "(" + summary.failed + " failed, " + summary.passed + " passed)"; } function createResultsDiv() { @@ -237,7 +237,7 @@ if (selector != null) { // running a test var createLink = function(parent, text, url) { var li = createAttached("li", parent); var a = createAttached("a", li); - a.innerText = text; + a.innerHTML = text; a.href = url; } if (tc == null) {