(n)
| 126 | } |
| 127 | |
| 128 | function commentHeavy(n) { |
| 129 | // Comments with and without markup-significant payloads: exercises |
| 130 | // the SAFE_FOR_XML comment probe. |
| 131 | let html = ''; |
| 132 | for (let i = 0; i < n; i++) { |
| 133 | html += `<!-- plain comment number ${i} -->`; |
| 134 | html += `<span>between ${i}</span>`; |
| 135 | html += `<!-- tricky <b>payload ${i}</b> -->`; |
| 136 | } |
| 137 | |
| 138 | return html; |
| 139 | } |
| 140 | |
| 141 | function svgMath(n) { |
| 142 | // Foreign-content blocks: exercises _checkValidNamespace dispatch. |
no outgoing calls
no test coverage detected
searching dependent graphs…