Git Product home page Git Product logo

Comments (4)

SteffenL avatar SteffenL commented on May 27, 2024 1

Thanks for the report.

I checked the documentation of WebView2 and it states the following:

The htmlContent parameter may not be larger than 2 MB (2 * 1024 * 1024 bytes) in total size. The origin of the new page is about:blank.

1,572,834 characters is closer to 3 MB after conversion to UTF-16.

I suspect the only way around that is to navigate to a file, virtual hostname or with a custom URI scheme, but those need to be implemented in the library unless you use the native handles and do it yourself.

from webview.

rcorre avatar rcorre commented on May 27, 2024

Ah, thank you! I was searching for a documented limitation but couldn't find it.

from webview.

ammatwain avatar ammatwain commented on May 27, 2024

I know this is a different context, but I've recently been using QWebViewEngine (which is a Chomium wrapper) of the QT libraries. And, on the setHtml method documentation we read, “Content larger than 2 MB cannot be displayed, because setHtml() converts the provided HTML to percent-encoding and places data: in front of it to create the URL that it navigates to.”

https://doc.qt.io/qt-6/qwebengineview.html#setHtml

from webview.

SteffenL avatar SteffenL commented on May 27, 2024

I'm not quite sure exactly how the numbers add up to 2 MiB but here's my partial guess.

Length Data
29 data:text/html;charset=utf-8,
1572834 content
1 null

These numbers add up to 1572864 bytes or 1.5 MiB before conversion to UTF-16.

from webview.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.