1
0
mirror of https://github.com/vichan-devel/vichan.git synced 2024-12-12 07:41:12 +01:00
vichan/inc/lib/htmlpurifier-4.5.0/tests/HTMLPurifier/HTMLT/allowed-remove.htmlt
2014-09-23 23:25:04 +00:00

9 lines
230 B
Plaintext

--INI--
HTML.AllowedElements = b,i,p,a
HTML.AllowedAttributes = a.href,*.id
--HTML--
<span>Not allowed</span><a class="mef" id="foobar">Remove id too!</a>
--EXPECT--
Not allowed<a>Remove id too!</a>
--# vim: et sw=4 sts=4