How to feed servo with a HTML tree in place of a URL ? #38228
-
I need to render something I can convert to HTML language, but I want to avoid using file system and keep it all in memory. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
I don't believe there is currently a specific API to support this. One option is to load a |
Beta Was this translation helpful? Give feedback.
-
And if you don't want to pay the price of base64 encoding with a data: url, you can implement your own protocol handler and hook it up to your HTML string. |
Beta Was this translation helpful? Give feedback.
And if you don't want to pay the price of base64 encoding with a data: url, you can implement your own protocol handler and hook it up to your HTML string.