Changeset 90113 in webkit


Ignore:
Timestamp:
Jun 30, 2011 6:59:41 AM (13 years ago)
Author:
commit-queue@webkit.org
Message:

2011-06-30 Fabrizio Machado <fabrizio.machado@nokia.com>

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):
Location:
trunk/Source/WebKit/qt
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit/qt/ChangeLog

    r90101 r90113  
     12011-06-30  Fabrizio Machado  <fabrizio.machado@nokia.com>
     2
     3        Reviewed by Benjamin Poulain.
     4       
     5        [Qt] QML Webview causes performance drops
     6        https://bugs.webkit.org/show_bug.cgi?id=57554
     7
     8        Remove tiledBackingStoreEnabled from QML WebView.
     9       
     10        * declarative/qdeclarativewebview.cpp:
     11        (QDeclarativeWebView::setPage):
     12
    1132011-06-30  Kentaro Hara  <haraken@google.com>
    214
  • trunk/Source/WebKit/qt/declarative/qdeclarativewebview.cpp

    r85640 r90113  
    783783    connect(page->mainFrame(), SIGNAL(javaScriptWindowObjectCleared()), this, SLOT(windowObjectCleared()));
    784784
     785#if !defined(Q_OS_SYMBIAN)
    785786    page->settings()->setAttribute(QWebSettings::TiledBackingStoreEnabled, true);
     787#endif
    786788
    787789}
Note: See TracChangeset for help on using the changeset viewer.