[SCM] WebKit Debian packaging branch, webkit-1.2, updated. upstream/1.1.90-6072-g9a69373

ossy at webkit.org ossy at webkit.org
Thu Apr 8 02:21:50 UTC 2010


The following commit has been merged in the webkit-1.2 branch:
commit 699b1e85b695ded5b6e0ad69843955a99913c3c6
Author: ossy at webkit.org <ossy at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Sat Mar 13 18:12:45 2010 +0000

    [Qt] Enable accelerated compositing by default
    https://bugs.webkit.org/show_bug.cgi?id=35866
    
    Unreviewed. Roll-out r55955, because it broke 3 tests:
    - animations/fill-mode-transform.html
    - animations/play-state.html
    - animations/simultaneous-start-left.html
    
    * Api/qwebsettings.cpp:
    (QWebSettings::QWebSettings):
    
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@55963 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKit/qt/Api/qwebsettings.cpp b/WebKit/qt/Api/qwebsettings.cpp
index a2616db..59a7d83 100644
--- a/WebKit/qt/Api/qwebsettings.cpp
+++ b/WebKit/qt/Api/qwebsettings.cpp
@@ -391,10 +391,6 @@ QWebSettings* QWebSettings::globalSettings()
     \value LocalContentCanAccessRemoteUrls Specifies whether locally loaded documents are allowed to access remote urls.
     \value LocalContentCanAccessFileUrls Specifies whether locally loaded documents are allowed to access other local urls.
     \value XSSAuditorEnabled Specifies whether load requests should be monitored for cross-site scripting attempts.
-    \value AcceleratedCompositingEnabled This feature, when used in conjunction with
-        QGraphicsWebView, accelerates animations of web content. CSS animations of the transform and
-        opacity properties will be rendered by composing the cached content of the animated elements.
-        This feature is enabled by default
 */
 
 /*!
@@ -427,7 +423,7 @@ QWebSettings::QWebSettings()
     d->attributes.insert(QWebSettings::LocalStorageEnabled, false);
     d->attributes.insert(QWebSettings::LocalContentCanAccessRemoteUrls, false);
     d->attributes.insert(QWebSettings::LocalContentCanAccessFileUrls, true);
-    d->attributes.insert(QWebSettings::AcceleratedCompositingEnabled, true);
+    d->attributes.insert(QWebSettings::AcceleratedCompositingEnabled, false);
     d->attributes.insert(QWebSettings::WebGLEnabled, false);
     d->offlineStorageDefaultQuota = 5 * 1024 * 1024;
     d->defaultTextEncoding = QLatin1String("iso-8859-1");
diff --git a/WebKit/qt/ChangeLog b/WebKit/qt/ChangeLog
index 42b59ed..f77d077 100644
--- a/WebKit/qt/ChangeLog
+++ b/WebKit/qt/ChangeLog
@@ -1,3 +1,16 @@
+2010-03-13  Csaba Osztrogonác  <ossy at webkit.org>
+
+        [Qt] Enable accelerated compositing by default
+        https://bugs.webkit.org/show_bug.cgi?id=35866
+
+        Unreviewed. Roll-out r55955, because it broke 3 tests:
+        - animations/fill-mode-transform.html
+        - animations/play-state.html
+        - animations/simultaneous-start-left.html
+
+        * Api/qwebsettings.cpp:
+        (QWebSettings::QWebSettings):
+
 2010-03-13  Simon Hausmann  <simon.hausmann at nokia.com>
 
         Reviewed by Kenneth Rohde Christiansen.

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list