We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I have not tested this, but judging by the code it seems that outerHTML would be called on a SVGDocument instance:
https://github.com/readium/readium-js/blob/develop/epub-modules/epub-fetch/src/models/markup_parser.js#L17
new window.DOMParser().parseFromString(" ... ", "image/svg+xml");
https://github.com/readium/readium-js/blob/develop/epub-modules/epub-fetch/src/models/iframe_zip_loader.js#L41
SVGDOM.documentElement.outerHTML
This may not be supported in all of Readium's target web browsers. To verify.
Maybe:
new XMLSerializer().serializeToString(DOM)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I have not tested this, but judging by the code it seems that outerHTML would be called on a SVGDocument instance:
https://github.com/readium/readium-js/blob/develop/epub-modules/epub-fetch/src/models/markup_parser.js#L17
https://github.com/readium/readium-js/blob/develop/epub-modules/epub-fetch/src/models/iframe_zip_loader.js#L41
This may not be supported in all of Readium's target web browsers. To verify.
Maybe:
The text was updated successfully, but these errors were encountered: