Unverified Commit 411fc649 authored by XhmikosR's avatar XhmikosR Committed by GitHub
Browse files

modal.html: use `textContent` (#32101)

We are not handling any HTML
parent 1d86fcee
Showing with 1 addition and 1 deletion
+1 -1
......@@ -221,7 +221,7 @@
function reportFirefoxTestResult(result) {
if (!firefoxTestDone) {
ffBugTestResult.classList.add(result ? 'text-success' : 'text-danger')
ffBugTestResult.innerHTML = result ? 'PASS' : 'FAIL'
ffBugTestResult.textContent = result ? 'PASS' : 'FAIL'
}
}
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment