Trusted Types compatibility: use DOM API for creating HTML elements instead of string concatenation in inspectEditorTokens.ts #105509
Labels
engineering
VS Code - Build / issue tracking / etc.
feature-request
Request for new features or functionality
insiders-released
Patch has been released in VS Code Insiders
verification-needed
Verification of issue is requested
verified
Verification succeeded
Milestone
The next step in resolving #103699. Simirarly to #105501, 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: