summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/webengine/doc/src/qtwebengine-overview.qdoc9
1 files changed, 3 insertions, 6 deletions
diff --git a/src/webengine/doc/src/qtwebengine-overview.qdoc b/src/webengine/doc/src/qtwebengine-overview.qdoc
index 512b4e208..5cf3a0eb0 100644
--- a/src/webengine/doc/src/qtwebengine-overview.qdoc
+++ b/src/webengine/doc/src/qtwebengine-overview.qdoc
@@ -94,7 +94,9 @@
\section2 Qt WebEngine Process
- The Qt WebEngine Process renders web pages and executes JavaScript.
+ The Qt WebEngine Process is a separate executable that is used to render web pages and
+ execute JavaScript. This mitigates security issues and isolates crashes caused by specific
+ content.
The document object model (DOM) of a page is constructed when the document is ready, typically
when the page is completely loaded. Therefore, executing scripts as soon as a document is
@@ -109,11 +111,6 @@
\note Chromium extensions, such as \c @include, \c @match, and \c @exclude, are not supported.
- Because the render process is separated from the GUI process, they should ideally share an
- OpenGL context to enable one process to access the resources uploaded by the other, such as
- images or textures. However, some inter-process communication is needed for safety and
- reliability, because it enables restarting a crashed process.
-
\section1 Embedding Web Content into Widget Based Applications
Use the QWebEngineView class to display web pages in the simplest way. Because it is a widget,