This repository has been archived on 2024-08-19. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
core/lib/htmlpurifier/tests/HTMLPurifier/HTMLT/script-dbl-comment.htmlt
2012-07-18 20:40:31 +10:00

12 lines
288 B
Plaintext

--INI--
HTML.Trusted = true
--HTML--
<script type="text/javascript"><![CDATA[
alert("<This is compatible with XHTML>");
//]]></script>
--EXPECT--
<script type="text/javascript"><!--//--><![CDATA[//><!--
alert("<This is compatible with XHTML>");
//--><!]]></script>
--# vim: et sw=4 sts=4