Open
Description
html5lib-python/html5lib/filters/sanitizer.py
Line 854 in 1a28d72
That elif
section essentially means that those four style properties get allowed regardless of allowed_css_properties
value.
For example, this text:
<p style="color: red; float: left; padding: 1em;">blah</p>
with this allowed_css_properties
:
['color']
gives this:
<p style="color: red; padding: 1em;">blah</p>