summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorLeena Miettinen <riitta-leena.miettinen@theqtcompany.com>2015-12-18 12:44:21 +0100
committerLeena Miettinen <riitta-leena.miettinen@theqtcompany.com>2015-12-18 14:16:51 +0000
commiteb0568394120c5b7d6b4e887cacad209373b0496 (patch)
treec3dda7d7af1b2d1de67e37b440f4dd1d5619f866 /src
parent278b7975d149bfd56cdd473fc165d0a0d9ba7f7d (diff)
Doc: add info about unavailable API from the wiki
https://wiki.qt.io/Porting_from_QtWebKit_to_QtWebEngine Change-Id: Ic28e2140ca1dd9643d68a0a21bdd30317b70e282 Reviewed-by: Joerg Bornemann <joerg.bornemann@theqtcompany.com>
Diffstat (limited to 'src')
-rw-r--r--src/webenginewidgets/doc/src/qtwebkitportingguide.qdoc8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/webenginewidgets/doc/src/qtwebkitportingguide.qdoc b/src/webenginewidgets/doc/src/qtwebkitportingguide.qdoc
index 1f3e618c2..41feecbe5 100644
--- a/src/webenginewidgets/doc/src/qtwebkitportingguide.qdoc
+++ b/src/webenginewidgets/doc/src/qtwebkitportingguide.qdoc
@@ -264,7 +264,8 @@
\li The Web SQL Database feature that this API was wrapping in Qt WebKit
was dropped from the HTML5 standard.
\row
- \li QWebPluginFactory, QWebPage::setPalette, QWebView::setRenderHints
+ \li QWebPluginDatabase, QWebPluginFactory, QWebPluginInfo, QWebPage::setPalette,
+ QWebView::setRenderHints
\li Qt WebEngine renders web pages using Skia and is not using QPainter
or Qt for this purpose. The HTML5 standard also now offers much
better alternatives that were not available when native controls
@@ -272,5 +273,10 @@
\row
\li QWebHistoryInterface
\li Visited links are persisted automatically by Qt WebEngine.
+ \row
+ \li QWebPage::setContentEditable
+ \li In the latest HTML standard, any document element can be made editable through the
+ \c contentEditable attribute. So \c runJavaScript is all that is needed:
+ \c{page->runJavascript("document.documentElement.contentEditable = true")}
\endtable
*/