diff --git a/examples/webengine/quicknanobrowser/doc/src/quicknanobrowser.qdoc b/examples/webengine/quicknanobrowser/doc/src/quicknanobrowser.qdoc
index 93b3ed51adedb7881cd0d2bb53c906b2deee122b..190604fc4bde44183395d677374a12072b28abaf 100644
--- a/examples/webengine/quicknanobrowser/doc/src/quicknanobrowser.qdoc
+++ b/examples/webengine/quicknanobrowser/doc/src/quicknanobrowser.qdoc
@@ -115,9 +115,9 @@
 
     We create a menu item for allowing fullscreen mode in a settings menu that we place on the tool
     bar. Also, we create an action for leaving fullscreen mode by using a keyboard shortcut.
-    We call the \l{WebEngineFullScreenRequest::}{accept()} method to accept the fullscreen request.
+    We call the \l{FullScreenRequest::}{accept()} method to accept the fullscreen request.
     The methdod sets the \l{WebEngineView::}{isFullScreen} property to be equal to the
-    \l{WebEngineFullScreenRequest::}{toggleOn} property.
+    \l{FullScreenRequest::}{toggleOn} property.
 
     \quotefromfile webengine/quicknanobrowser/BrowserWindow.qml
     \skipto onFullScreenRequested
diff --git a/src/webengine/doc/src/webengineview.qdoc b/src/webengine/doc/src/webengineview.qdoc
index 1d1c61f03ab386acedae229b95c2f7ed0493ca42..e14448aa41f1a4d4d40c1c9b9290f1ab1059f3fe 100644
--- a/src/webengine/doc/src/webengineview.qdoc
+++ b/src/webengine/doc/src/webengineview.qdoc
@@ -112,7 +112,7 @@
 
     A web page can request through the JavaScript API to be loaded in fullscreen mode. The
     \l fullScreenRequested() signal is emitted when the web page issues the request. The
-    WebEngineFullScreenRequest utility type can be used to toggle fullscreen requests. The
+    FullScreenRequest utility type can be used to toggle fullscreen requests. The
     \l fullScreenCancelled method can be used to notify the browser engine when the windowing
     system forces the application to leave fullscreen mode.
 
@@ -576,7 +576,7 @@
 */
 
 /*!
-    \qmlsignal WebEngineView::fullScreenRequested(WebEngineFullScreenRequest request)
+    \qmlsignal WebEngineView::fullScreenRequested(FullScreenRequest request)
     \since QtWebEngine 1.1
 
     This signal is emitted when the web page requests fullscreen mode through the
@@ -1039,7 +1039,7 @@
 */
 
 /*!
-    \qmltype WebEngineFullScreenRequest
+    \qmltype FullScreenRequest
     \instantiates QQuickWebEngineFullScreenRequest
     \inqmlmodule QtWebEngine
     \since QtWebEngine 1.1
@@ -1050,13 +1050,13 @@
 */
 
 /*!
-    \qmlproperty url WebEngineFullScreenRequest::origin
+    \qmlproperty url FullScreenRequest::origin
     \readonly
     The URL of the web page that issued the fullscreen request.
 */
 
 /*!
-    \qmlproperty bool WebEngineFullScreenRequest::toggleOn
+    \qmlproperty bool FullScreenRequest::toggleOn
     \readonly
 
     Returns \c{true} if the application should toggle fullscreen mode on, \c{false} otherwise.
@@ -1065,7 +1065,7 @@
 */
 
 /*!
-    \qmlmethod void WebEngineFullScreenRequest::accept()
+    \qmlmethod void FullScreenRequest::accept()
 
     Call this method to accept the fullscreen request. It sets the WebEngineView::isFullScreen
     property to be equal to toggleOn.
@@ -1089,7 +1089,7 @@
 */
 
 /*!
-    \qmlmethod void WebEngineFullScreenRequest::reject()
+    \qmlmethod void FullScreenRequest::reject()
     Rejects a fullscreen request.
 */