You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

9 lines
222B

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