{"ScriptPreparationCode":"window.testcontent = \u0022Here is a string with a \u003Cdel\u003Estrikethrough\u003C/del\u003E value\u0022\r\nwindow.testcontent2 = \u0022Here is a string without a strikethrough value\u0022","TestCases":[{"Name":"dompurify","Code":"var frag = document.createDocumentFragment();\r\nfrag.innerHTML = DOMPurify.sanitize(window.testcontent);\r\ndocument.appendChild(frag);","IsDeferred":false},{"Name":"js-xss","Code":"var frag = document.createDocumentFragment();\r\nfrag.innerHTML = filterXSS(window.testcontent);\r\ndocument.appendChild(frag);","IsDeferred":false},{"Name":"no sanitization","Code":"var frag = document.createDocumentFragment();\r\nfrag.innerHTML = window.testcontent2;\r\ndocument.appendChild(frag);","IsDeferred":false}]}