Webview / Custom Webview Load HTML Not Working ! Help Me

I am trying to load a html file from using various method such as webview , html extension, Custom webview but nothing works . Before creating this topic i have read many post regarding the doubt. but doesnt work

Here what i have tried so far

blocks

Here is the html code

<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8" />
    <meta name="viewport" content="width=device-width">
  </head>
  <body>
    <object data="https://resource.cdn.icai.org/66970bos181021-foundation.pdf" type="application/pdf" style="min-height:100vh;width:100%"></object>
  </body>
</html>


Please Help

Share your html and output screenshot

Make sure you are using latest version of extension.

There is nothing on output. Just a blank white background

Yaa its 12.0 beta. is this latest version?

Here is the HTML Code

<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8" />
    <meta name="viewport" content="width=device-width">
  </head>
  <body>
    <object data="https://resource.cdn.icai.org/66970bos181021-foundation.pdf" type="application/pdf" style="min-height:100vh;width:100%"></object>
  </body>
</html>

It has been released.
Download it from here:

Its not Downloading

This site can’t be reachedraw.githubusercontent.com took too long to respond.

You can’t load this HTML in webview.

After removing the object tag why this not working

<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8" />
    <meta name="viewport" content="width=device-width">
  </head>
  <body>
    <embed src="https://resource.cdn.icai.org/66970bos181021-foundation.pdf" type="application/pdf" style="width:100%; height:100vh;">
  </body>
</html>

You can’t load pdf directly into webview.
It’s simple.

Hello, im having trouble on loading an html file that propmpts for permission of camera, the main idea is that the webpage take photos from camera, converts to base64 and send the string via post to a server in nodered, the webpage works and prompts the permission with this solution:

but only if i upload to a website that have https (my idea is to be loaded locally)
please help