Allow slash in style aspect-ratio property value in Embed html
Hello, our client wants to add html code that includes the aspect-ratio style property with the value 16/9 to the embed html like this:
<div style="max-height: 900px;aspect-ratio: 16/9;margin: auto;">
I allowed the aspect ratio for the style property in the xssprotection config.xml and want to allow any value for the aspect-ratio like this
<property name="aspect-ratio" description="">
<regexp-list>
<regexp name="anythingWithSlash"/>
</regexp-list>
</property>
I tried it with the out of the box anything and also added my own anythingWithSlash
<regexp name="anything" value=".*"/>
<regexp name="anythingWithSlash" value=".*|\/"/>
but the result is always
aspect-ratio: 16 9;without the slash.
Are slashed removed on a deeper level?