Changeset 56140 in webkit


Ignore:
Timestamp:
Mar 17, 2010 6:59:52 PM (14 years ago)
Author:
eric@webkit.org
Message:

2010-03-17 Chang Shu <chang.shu@nokia.com>

Reviewed by Laszlo Gombos.

https://bugs.webkit.org/show_bug.cgi?id=36139
[Qt] Unskip the test that now passes.

platform/qt/Skipped:

2010-03-17 Chang Shu <chang.shu@nokia.com>

Reviewed by Laszlo Gombos.

https://bugs.webkit.org/show_bug.cgi?id=36139
[Qt] Clean up cache while setting cache quota. This behavior matches other platforms,
such as mac and gtk.

  • Api/qwebsettings.cpp:

(QWebSettings::setOfflineWebApplicationCacheQuota):

2010-03-17 Chang Shu <chang.shu@nokia.com>

Reviewed by Laszlo Gombos.

https://bugs.webkit.org/show_bug.cgi?id=36139
[Qt] Clean up cache each time DumpRenderTree starts. This behavior
matches other platforms, such as mac and gtk.

  • DumpRenderTree/qt/DumpRenderTreeQt.cpp: (WebCore::DumpRenderTree::DumpRenderTree):
Location:
trunk
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r56136 r56140  
     12010-03-17  Chang Shu  <chang.shu@nokia.com>
     2
     3        Reviewed by Laszlo Gombos.
     4
     5        https://bugs.webkit.org/show_bug.cgi?id=36139
     6        [Qt] Unskip the test that now passes.
     7
     8        platform/qt/Skipped:
     9
    1102010-03-17  Drew Wilson  <atwilson@chromium.org>
    211
  • trunk/LayoutTests/platform/qt/Skipped

    r56134 r56140  
    2424# Skip failed appcache test cases
    2525http/tests/appcache/auth.html
    26 http/tests/appcache/empty-manifest.html
    2726http/tests/appcache/fallback.html
    2827http/tests/appcache/foreign-iframe-main.html
  • trunk/WebKit/qt/Api/qwebsettings.cpp

    r56106 r56140  
    938938{
    939939#if ENABLE(OFFLINE_WEB_APPLICATIONS)
     940    WebCore::cacheStorage().empty();
     941    WebCore::cacheStorage().vacuumDatabaseFile();
    940942    WebCore::cacheStorage().setMaximumSize(maximumSize);
    941943#endif
  • trunk/WebKit/qt/ChangeLog

    r56106 r56140  
     12010-03-17  Chang Shu  <chang.shu@nokia.com>
     2
     3        Reviewed by Laszlo Gombos.
     4
     5        https://bugs.webkit.org/show_bug.cgi?id=36139
     6        [Qt] Clean up cache while setting cache quota. This behavior matches other platforms,
     7        such as mac and gtk.
     8
     9         * Api/qwebsettings.cpp:
     10        (QWebSettings::setOfflineWebApplicationCacheQuota):
     11
    1122010-03-17  Csaba Osztrogonác  <ossy@webkit.org>
    213
  • trunk/WebKitTools/ChangeLog

    r56138 r56140  
     12010-03-17  Chang Shu  <chang.shu@nokia.com>
     2
     3        Reviewed by Laszlo Gombos.
     4
     5        https://bugs.webkit.org/show_bug.cgi?id=36139
     6        [Qt] Clean up cache each time DumpRenderTree starts. This behavior
     7        matches other platforms, such as mac and gtk.
     8
     9        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
     10        (WebCore::DumpRenderTree::DumpRenderTree):
     11
    1122010-03-17  Adam Barth  <abarth@webkit.org>
    213
  • trunk/WebKitTools/DumpRenderTree/qt/DumpRenderTreeQt.cpp

    r55803 r56140  
    326326    m_mainView->setContextMenuPolicy(Qt::NoContextMenu);
    327327
     328    // clean up cache by resetting quota.
     329    qint64 quota = webPage()->settings()->offlineWebApplicationCacheQuota();
     330    webPage()->settings()->setOfflineWebApplicationCacheQuota(quota);
     331
    328332    // create our controllers. This has to be done before connectFrame,
    329333    // as it exports there to the JavaScript DOM window.
Note: See TracChangeset for help on using the changeset viewer.