-
Notifications
You must be signed in to change notification settings - Fork 215
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Overflow is sanitized #236
Comments
What do you mean by "overflows?" Are you talking about the CSS |
Or do the semicolons inside your HTML tags relate to your question? |
Hello, the overflow-x properties |
I believe overflow-x is recognized by the CSS property validator. java-html-sanitizer/src/main/java/org/owasp/html/CssSchema.java Lines 421 to 426 in e2b29e8
|
Thanks for your answer ! How do you add them to the |
If I import .and(CssSchema.DEFINITIONS) at this line of code will it works ? |
no :/ |
Add this to your policy to explicitly allow this property (with values as defined in CssSchema): |
Hello, the codingame game engine which allow people to create games for its platform use your sanitizer on the game documentation.
When I tried to implement some overflow on tables, it got sanitized. The game engine principal contributor told me that he allowed everything he could and that he didn't know your sanitizer would delete overflows.
Is this possible to allow them ?
Here is the part of their code where they sanitize the game statement, and here is the part of my html page including the overflow :
The text was updated successfully, but these errors were encountered: