android-components / mozilla.components.browser.engine.servo / ServoEngineSession / loadData

loadData

fun loadData(data: String, mimeType: String, encoding: String): Unit (source)

Overrides EngineSession.loadData

Loads the data with the given mimeType. Example:

engineSession.loadData("<html><body>Example HTML content here</body></html>", "text/html")

If the data is base64 encoded, you can override the default encoding (UTF-8) with 'base64'. Example:

engineSession.loadData("ahr0cdovl21vemlsbgeub3jn==", "text/plain", "base64")

Parameters

data - The data that should be rendering.

mimeType - the data type needed by the engine to know how to render it.

encoding - specifies whether the data is base64 encoded; use 'base64' else defaults to "UTF-8".