Changeset 54543 in webkit


Ignore:
Timestamp:
Feb 9, 2010, 2:40:22 AM (16 years ago)
Author:
eric@webkit.org
Message:

2010-02-09 Chang Shu <Chang.Shu@nokia.com>

Reviewed by Laszlo Gombos.

[Qt] Enable http/tests/appcache but skip the failed cases.
https://bugs.webkit.org/show_bug.cgi?id=34713

  • platform/qt/Skipped:

2010-02-09 Chang Shu <Chang.Shu@nokia.com>

Reviewed by Laszlo Gombos.

[Qt] Enable appcache feature.
https://bugs.webkit.org/show_bug.cgi?id=34713

  • DumpRenderTree/qt/DumpRenderTreeQt.cpp: (WebCore::WebPage::WebPage):
  • DumpRenderTree/qt/main.cpp: (main):
Location:
trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r54540 r54543  
     12010-02-09  Chang Shu  <Chang.Shu@nokia.com>
     2
     3        Reviewed by Laszlo Gombos.
     4
     5        [Qt] Enable http/tests/appcache but skip the failed cases.
     6        https://bugs.webkit.org/show_bug.cgi?id=34713
     7
     8        * platform/qt/Skipped:
     9
    1102010-02-09  Eric Seidel  <eric@webkit.org>
    211
  • trunk/LayoutTests/platform/qt/Skipped

    r54538 r54543  
    1616
    1717# Disabled HTTP subdirs for now, needs investigation.
    18 http/tests/appcache
    1918http/tests/webarchive
    2019http/tests/globalhistory
     
    2322http/tests/webarchive
    2423http/tests/wml
     24
     25# Skip failed appcache test cases
     26http/tests/appcache/auth.html
     27http/tests/appcache/empty-manifest.html
     28http/tests/appcache/fallback.html
     29http/tests/appcache/foreign-iframe-main.html
     30http/tests/appcache/manifest-redirect-2.html
     31http/tests/appcache/manifest-with-empty-file.html
     32http/tests/appcache/max-size.html
     33http/tests/appcache/offline-access.html
     34http/tests/appcache/resource-redirect-2.html
     35http/tests/appcache/resource-redirect.html
    2536
    2637# Failing URL test
  • trunk/WebKitTools/ChangeLog

    r54533 r54543  
     12010-02-09  Chang Shu  <Chang.Shu@nokia.com>
     2
     3        Reviewed by Laszlo Gombos.
     4
     5        [Qt] Enable appcache feature.
     6        https://bugs.webkit.org/show_bug.cgi?id=34713
     7
     8
     9        * DumpRenderTree/qt/DumpRenderTreeQt.cpp:
     10        (WebCore::WebPage::WebPage):
     11        * DumpRenderTree/qt/main.cpp:
     12        (main):
     13
    1142010-02-09  Shinichiro Hamaji  <hamaji@chromium.org>
    215
  • trunk/WebKitTools/DumpRenderTree/qt/DumpRenderTreeQt.cpp

    r54289 r54543  
    136136    globalSettings->setAttribute(QWebSettings::JavascriptEnabled, true);
    137137    globalSettings->setAttribute(QWebSettings::PrivateBrowsingEnabled, false);
    138     globalSettings->setAttribute(QWebSettings::OfflineWebApplicationCacheEnabled, false);
     138    globalSettings->setAttribute(QWebSettings::OfflineWebApplicationCacheEnabled, true);
    139139
    140140    connect(this, SIGNAL(geometryChangeRequested(const QRect &)),
  • trunk/WebKitTools/DumpRenderTree/qt/main.cpp

    r54496 r54543  
    164164    QString dbDir = QDesktopServices::storageLocation(QDesktopServices::DataLocation) + QDir::separator() + "qtwebkitdrt";
    165165    QWebSettings::setOfflineStoragePath(dbDir);
     166    QWebSettings::setOfflineWebApplicationCachePath(dbDir);
    166167    QWebDatabase::removeAllDatabases();
    167168
Note: See TracChangeset for help on using the changeset viewer.