Manuel G
Results
1
comments of
Manuel G
I found a different way to to it. Instead of ``` let blob = new Blob(['Hello World!'], {type: 'text/html'}), webview = document.createElement('webview'); document.body.append(webview); webview.src = URL.createObjectURL(blob); ``` I am using:...