Changeset 55955 in webkit


Ignore:
Timestamp:
Mar 13, 2010 1:21:24 AM (14 years ago)
Author:
eric@webkit.org
Message:

2010-03-13 Simon Hausmann <simon.hausmann@nokia.com>

Reviewed by Kenneth Rohde Christiansen.

[Qt] Enable accelerated compositing by default
https://bugs.webkit.org/show_bug.cgi?id=35866

  • Api/qwebsettings.cpp: (QWebSettings::QWebSettings):
Location:
trunk/WebKit/qt
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKit/qt/Api/qwebsettings.cpp

    r55803 r55955  
    392392    \value LocalContentCanAccessFileUrls Specifies whether locally loaded documents are allowed to access other local urls.
    393393    \value XSSAuditorEnabled Specifies whether load requests should be monitored for cross-site scripting attempts.
     394    \value AcceleratedCompositingEnabled This feature, when used in conjunction with
     395        QGraphicsWebView, accelerates animations of web content. CSS animations of the transform and
     396        opacity properties will be rendered by composing the cached content of the animated elements.
     397        This feature is enabled by default
    394398*/
    395399
     
    424428    d->attributes.insert(QWebSettings::LocalContentCanAccessRemoteUrls, false);
    425429    d->attributes.insert(QWebSettings::LocalContentCanAccessFileUrls, true);
    426     d->attributes.insert(QWebSettings::AcceleratedCompositingEnabled, false);
     430    d->attributes.insert(QWebSettings::AcceleratedCompositingEnabled, true);
    427431    d->attributes.insert(QWebSettings::WebGLEnabled, false);
    428432    d->offlineStorageDefaultQuota = 5 * 1024 * 1024;
  • trunk/WebKit/qt/ChangeLog

    r55864 r55955  
     12010-03-13  Simon Hausmann  <simon.hausmann@nokia.com>
     2
     3        Reviewed by Kenneth Rohde Christiansen.
     4
     5        [Qt] Enable accelerated compositing by default
     6        https://bugs.webkit.org/show_bug.cgi?id=35866
     7
     8        * Api/qwebsettings.cpp:
     9        (QWebSettings::QWebSettings):
     10
    1112010-03-11  Anders Carlsson  <andersca@apple.com>
    212
Note: See TracChangeset for help on using the changeset viewer.