Title: [90113] trunk/Source/WebKit/qt
Revision
90113
Author
[email protected]
Date
2011-06-30 06:59:41 -0700 (Thu, 30 Jun 2011)

Log Message

2011-06-30  Fabrizio Machado  <[email protected]>

        Reviewed by Benjamin Poulain.

        [Qt] QML Webview causes performance drops
        https://bugs.webkit.org/show_bug.cgi?id=57554

        Remove tiledBackingStoreEnabled from QML WebView.

        * declarative/qdeclarativewebview.cpp:
        (QDeclarativeWebView::setPage):

Modified Paths

Diff

Modified: trunk/Source/WebKit/qt/ChangeLog (90112 => 90113)


--- trunk/Source/WebKit/qt/ChangeLog	2011-06-30 13:43:59 UTC (rev 90112)
+++ trunk/Source/WebKit/qt/ChangeLog	2011-06-30 13:59:41 UTC (rev 90113)
@@ -1,3 +1,15 @@
+2011-06-30  Fabrizio Machado  <[email protected]>
+
+        Reviewed by Benjamin Poulain.
+        
+        [Qt] QML Webview causes performance drops
+        https://bugs.webkit.org/show_bug.cgi?id=57554
+
+        Remove tiledBackingStoreEnabled from QML WebView.
+        
+        * declarative/qdeclarativewebview.cpp:
+        (QDeclarativeWebView::setPage):
+
 2011-06-30  Kentaro Hara  <[email protected]>
 
         Reviewed by Kent Tamura.

Modified: trunk/Source/WebKit/qt/declarative/qdeclarativewebview.cpp (90112 => 90113)


--- trunk/Source/WebKit/qt/declarative/qdeclarativewebview.cpp	2011-06-30 13:43:59 UTC (rev 90112)
+++ trunk/Source/WebKit/qt/declarative/qdeclarativewebview.cpp	2011-06-30 13:59:41 UTC (rev 90113)
@@ -782,7 +782,9 @@
 
     connect(page->mainFrame(), SIGNAL(_javascript_WindowObjectCleared()), this, SLOT(windowObjectCleared()));
 
+#if !defined(Q_OS_SYMBIAN)
     page->settings()->setAttribute(QWebSettings::TiledBackingStoreEnabled, true);
+#endif
 
 }
 
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to