Changeset 54543 in webkit
- Timestamp:
- Feb 9, 2010, 2:40:22 AM (16 years ago)
- Location:
- trunk
- Files:
-
- 5 edited
-
LayoutTests/ChangeLog (modified) (1 diff)
-
LayoutTests/platform/qt/Skipped (modified) (2 diffs)
-
WebKitTools/ChangeLog (modified) (1 diff)
-
WebKitTools/DumpRenderTree/qt/DumpRenderTreeQt.cpp (modified) (1 diff)
-
WebKitTools/DumpRenderTree/qt/main.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/LayoutTests/ChangeLog
r54540 r54543 1 2010-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 1 10 2010-02-09 Eric Seidel <eric@webkit.org> 2 11 -
trunk/LayoutTests/platform/qt/Skipped
r54538 r54543 16 16 17 17 # Disabled HTTP subdirs for now, needs investigation. 18 http/tests/appcache19 18 http/tests/webarchive 20 19 http/tests/globalhistory … … 23 22 http/tests/webarchive 24 23 http/tests/wml 24 25 # Skip failed appcache test cases 26 http/tests/appcache/auth.html 27 http/tests/appcache/empty-manifest.html 28 http/tests/appcache/fallback.html 29 http/tests/appcache/foreign-iframe-main.html 30 http/tests/appcache/manifest-redirect-2.html 31 http/tests/appcache/manifest-with-empty-file.html 32 http/tests/appcache/max-size.html 33 http/tests/appcache/offline-access.html 34 http/tests/appcache/resource-redirect-2.html 35 http/tests/appcache/resource-redirect.html 25 36 26 37 # Failing URL test -
trunk/WebKitTools/ChangeLog
r54533 r54543 1 2010-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 1 14 2010-02-09 Shinichiro Hamaji <hamaji@chromium.org> 2 15 -
trunk/WebKitTools/DumpRenderTree/qt/DumpRenderTreeQt.cpp
r54289 r54543 136 136 globalSettings->setAttribute(QWebSettings::JavascriptEnabled, true); 137 137 globalSettings->setAttribute(QWebSettings::PrivateBrowsingEnabled, false); 138 globalSettings->setAttribute(QWebSettings::OfflineWebApplicationCacheEnabled, false);138 globalSettings->setAttribute(QWebSettings::OfflineWebApplicationCacheEnabled, true); 139 139 140 140 connect(this, SIGNAL(geometryChangeRequested(const QRect &)), -
trunk/WebKitTools/DumpRenderTree/qt/main.cpp
r54496 r54543 164 164 QString dbDir = QDesktopServices::storageLocation(QDesktopServices::DataLocation) + QDir::separator() + "qtwebkitdrt"; 165 165 QWebSettings::setOfflineStoragePath(dbDir); 166 QWebSettings::setOfflineWebApplicationCachePath(dbDir); 166 167 QWebDatabase::removeAllDatabases(); 167 168
Note:
See TracChangeset
for help on using the changeset viewer.