-
-
Notifications
You must be signed in to change notification settings - Fork 770
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
Old iOS: getParentNode is not a function #516
Comments
Ooof, you are right, while Safari 9 is not supported, we should not expose @securitum-mb do you have any idea how we can detect unsupported Safari? |
@cure53 My first thought is to check whether On the other hand (but unfortunately I don't have time to do it right now), maybe the clobbering protection as implemented was not the best idea. The implementation in Closure is slightly different and maybe a good place to start. |
@pager-itc As far as I can see, this workaround should do. /**
* Expose whether this browser supports running the full DOMPurify.
*/
DOMPurify.isSupported =
typeof getParentNode === 'function' &&
implementation &&
typeof implementation.createHTMLDocument !== 'undefined' &&
documentMode !== 9; It works as expected on our Safari 9 instance, canm you confirm that this does the trick for you and correctly sets isSupported? |
Can confirm; with that workaround there is no error, dompurify just returns the original HTML string as it was provided for the old Safari browsers and sanitizes as normal in Chrome and Firefox on my desktop. |
Cool, let me push that fix to main and see what the remaining test cases say. |
Hey @cure53 @securityMB. Please check #514. It seems the issue of nullable getParentNode was fixed there. Please chekd the latest updates in the main branch if it works in your case |
Aye, this one mostly addresses the faulty result for |
On iOS 9 Safari
DOMPurify.sanitize
throws this error message (tested on iPhone 6S on BrowserStack, and physical iPad Mini 1 - iOS 9.3.5)On iOS 7 & 8 Safari (iPhone 5S & iPhone 6, BrowserStack)
Even in the most simple setup like below
Transpiling with babel doesn't fix the issue.
The readme says that old browsers at the very least should do nothing. The
isSupported
property istrue
despite the error.The text was updated successfully, but these errors were encountered: