Title: [88838] trunk
- Revision
- 88838
- Author
- [email protected]
- Date
- 2011-06-14 11:44:25 -0700 (Tue, 14 Jun 2011)
Log Message
2011-06-14 Qi Zhang <[email protected]>
Reviewed by Laszlo Gombos.
[Qt] fast/dom/HTMLScriptElement/nested-execution.html failed
https://bugs.webkit.org/show_bug.cgi?id=62227
* platform/qt/Skipped:
2011-06-14 Qi Zhang <[email protected]>
Reviewed by Laszlo Gombos.
[Qt] fast/dom/HTMLScriptElement/nested-execution.html failed
https://bugs.webkit.org/show_bug.cgi?id=62227
QtWebkit does not yet support different CacheModels. This change will
expose setCacheModel() with a stub implementation, which is enough to pass the LayoutTest.
* DumpRenderTree/qt/LayoutTestControllerQt.cpp:
(LayoutTestController::setCacheModel):
* DumpRenderTree/qt/LayoutTestControllerQt.h:
Modified Paths
Diff
Modified: trunk/LayoutTests/ChangeLog (88837 => 88838)
--- trunk/LayoutTests/ChangeLog 2011-06-14 18:43:29 UTC (rev 88837)
+++ trunk/LayoutTests/ChangeLog 2011-06-14 18:44:25 UTC (rev 88838)
@@ -1,3 +1,12 @@
+2011-06-14 Qi Zhang <[email protected]>
+
+ Reviewed by Laszlo Gombos.
+
+ [Qt] fast/dom/HTMLScriptElement/nested-execution.html failed
+ https://bugs.webkit.org/show_bug.cgi?id=62227
+
+ * platform/qt/Skipped:
+
2011-06-14 Chris Fleizach <[email protected]>
Reviewed by David Kilzer.
Modified: trunk/LayoutTests/platform/qt/Skipped (88837 => 88838)
--- trunk/LayoutTests/platform/qt/Skipped 2011-06-14 18:43:29 UTC (rev 88837)
+++ trunk/LayoutTests/platform/qt/Skipped 2011-06-14 18:44:25 UTC (rev 88838)
@@ -1380,7 +1380,6 @@
fast/dom/Range/getBoundingClientRect.html
fast/dom/Range/getClientRects.html
fast/dom/tabindex-clamp.html
-fast/dom/HTMLScriptElement/nested-execution.html
fast/dom/Window/webkitConvertPoint.html
fast/encoding/char-encoding-mac.html
fast/encoding/hebrew/8859-8-e.html
Modified: trunk/Tools/ChangeLog (88837 => 88838)
--- trunk/Tools/ChangeLog 2011-06-14 18:43:29 UTC (rev 88837)
+++ trunk/Tools/ChangeLog 2011-06-14 18:44:25 UTC (rev 88838)
@@ -1,3 +1,17 @@
+2011-06-14 Qi Zhang <[email protected]>
+
+ Reviewed by Laszlo Gombos.
+
+ [Qt] fast/dom/HTMLScriptElement/nested-execution.html failed
+ https://bugs.webkit.org/show_bug.cgi?id=62227
+
+ QtWebkit does not yet support different CacheModels. This change will
+ expose setCacheModel() with a stub implementation, which is enough to pass the LayoutTest.
+
+ * DumpRenderTree/qt/LayoutTestControllerQt.cpp:
+ (LayoutTestController::setCacheModel):
+ * DumpRenderTree/qt/LayoutTestControllerQt.h:
+
2011-06-14 Caio Marcelo de Oliveira Filho <[email protected]>
Reviewed by Andreas Kling.
Modified: trunk/Tools/DumpRenderTree/qt/LayoutTestControllerQt.cpp (88837 => 88838)
--- trunk/Tools/DumpRenderTree/qt/LayoutTestControllerQt.cpp 2011-06-14 18:43:29 UTC (rev 88837)
+++ trunk/Tools/DumpRenderTree/qt/LayoutTestControllerQt.cpp 2011-06-14 18:44:25 UTC (rev 88838)
@@ -599,6 +599,16 @@
return QStringList();
}
+void LayoutTestController::setCacheModel(int model)
+{
+ // qwebsetting doesn't have matched setting yet :
+ // WEBKIT_CACHE_MODEL_DOCUMENT_VIEWER
+ // WEBKIT_CACHE_MODEL_DOCUMENT_BROWSER
+ // WEBKIT_CACHE_MODEL_WEB_BROWSER
+
+ // FIXME: Implement.
+}
+
void LayoutTestController::setDatabaseQuota(int size)
{
if (!m_topLoadingFrame)
Modified: trunk/Tools/DumpRenderTree/qt/LayoutTestControllerQt.h (88837 => 88838)
--- trunk/Tools/DumpRenderTree/qt/LayoutTestControllerQt.h 2011-06-14 18:43:29 UTC (rev 88837)
+++ trunk/Tools/DumpRenderTree/qt/LayoutTestControllerQt.h 2011-06-14 18:44:25 UTC (rev 88838)
@@ -197,6 +197,7 @@
void setApplicationCacheOriginQuota(unsigned long long quota);
QStringList originsWithApplicationCache();
long long applicationCacheDiskUsageForOrigin(const QString&);
+ void setCacheModel(int);
void setDatabaseQuota(int size);
void clearAllDatabases();
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes