Trusted Types compatibility: use DOM API for creating HTML elements instead of string concatenation in inspectTokens.ts #105501
Labels
engineering
VS Code - Build / issue tracking / etc.
insiders-released
Patch has been released in VS Code Insiders
Milestone
The next step in resolving #103699. It aims to replace construction of HTML elements by string concatenation in
src/vs/editor/standalone/browser/inspectTokens.ts
file. The code contains mainly a table construction by concatenating strings of<tr><td class=”foo”>foobar</td><td class=”bar”>barfoo</td></tr>
. The goal is to replace them all withdom.ts#$
function calls.The text was updated successfully, but these errors were encountered: