Diff
Modified: trunk/ChangeLog (125737 => 125738)
--- trunk/ChangeLog 2012-08-16 02:35:29 UTC (rev 125737)
+++ trunk/ChangeLog 2012-08-16 02:40:21 UTC (rev 125738)
@@ -1,3 +1,12 @@
+2012-08-15 Ryosuke Niwa <[email protected]>
+
+ Update manual tests and comments to refer to TestRunner instead of LayoutTestController
+ https://bugs.webkit.org/show_bug.cgi?id=94168
+
+ Reviewed by Kent Tamura.
+
+ * ManualTests/resources/multiFileResources/post-echo-and-notify-done.cgi:
+
2012-08-15 Bruno de Oliveira Abinader <[email protected]>
[css3-text] Add CSS3 Text decoration compile flag
Modified: trunk/ManualTests/resources/multiFileResources/post-echo-and-notify-done.cgi (125737 => 125738)
--- trunk/ManualTests/resources/multiFileResources/post-echo-and-notify-done.cgi 2012-08-16 02:35:29 UTC (rev 125737)
+++ trunk/ManualTests/resources/multiFileResources/post-echo-and-notify-done.cgi 2012-08-16 02:40:21 UTC (rev 125738)
@@ -6,7 +6,7 @@
read(STDIN, $request, $ENV{'CONTENT_LENGTH'})
|| die "Could not get query\n";
print "<pre>$request</pre>";
- print "<script>if (window.layoutTestController) layoutTestController.notifyDone();</script>";
+ print "<script>if (window.testRunner) testRunner.notifyDone();</script>";
} else {
print "Wrong method: " . $ENV{'REQUEST_METHOD'} . "\n";
}
Modified: trunk/Source/WebKit/ChangeLog (125737 => 125738)
--- trunk/Source/WebKit/ChangeLog 2012-08-16 02:35:29 UTC (rev 125737)
+++ trunk/Source/WebKit/ChangeLog 2012-08-16 02:40:21 UTC (rev 125738)
@@ -1,3 +1,12 @@
+2012-08-15 Ryosuke Niwa <[email protected]>
+
+ Update manual tests and comments to refer to TestRunner instead of LayoutTestController
+ https://bugs.webkit.org/show_bug.cgi?id=94168
+
+ Reviewed by Kent Tamura.
+
+ * PlatformBlackBerry.cmake:
+
2012-08-14 Christophe Dumez <[email protected]>
[EFL] undefined reference to 'g_type_init' with gold linker
Modified: trunk/Source/WebKit/PlatformBlackBerry.cmake (125737 => 125738)
--- trunk/Source/WebKit/PlatformBlackBerry.cmake 2012-08-16 02:35:29 UTC (rev 125737)
+++ trunk/Source/WebKit/PlatformBlackBerry.cmake 2012-08-16 02:40:21 UTC (rev 125738)
@@ -132,14 +132,14 @@
${TOOLS_DIR}/DumpRenderTree/blackberry/DumpRenderTree.cpp
${TOOLS_DIR}/DumpRenderTree/blackberry/EventSender.cpp
${TOOLS_DIR}/DumpRenderTree/blackberry/GCControllerBlackBerry.cpp
- ${TOOLS_DIR}/DumpRenderTree/blackberry/LayoutTestControllerBlackBerry.cpp
+ ${TOOLS_DIR}/DumpRenderTree/blackberry/TestRunnerBlackBerry.cpp
${TOOLS_DIR}/DumpRenderTree/blackberry/PixelDumpSupportBlackBerry.cpp
${TOOLS_DIR}/DumpRenderTree/blackberry/PNGImageEncoder.cpp
${TOOLS_DIR}/DumpRenderTree/blackberry/WorkQueueItemBlackBerry.cpp
${TOOLS_DIR}/DumpRenderTree/AccessibilityController.cpp
${TOOLS_DIR}/DumpRenderTree/AccessibilityUIElement.cpp
${TOOLS_DIR}/DumpRenderTree/AccessibilityTextMarker.cpp
- ${TOOLS_DIR}/DumpRenderTree/LayoutTestController.cpp
+ ${TOOLS_DIR}/DumpRenderTree/TestRunner.cpp
${TOOLS_DIR}/DumpRenderTree/CyclicRedundancyCheck.cpp
${TOOLS_DIR}/DumpRenderTree/PixelDumpSupport.cpp
${TOOLS_DIR}/DumpRenderTree/WorkQueue.cpp
Modified: trunk/Source/WebKit/chromium/ChangeLog (125737 => 125738)
--- trunk/Source/WebKit/chromium/ChangeLog 2012-08-16 02:35:29 UTC (rev 125737)
+++ trunk/Source/WebKit/chromium/ChangeLog 2012-08-16 02:40:21 UTC (rev 125738)
@@ -1,3 +1,15 @@
+2012-08-15 Ryosuke Niwa <[email protected]>
+
+ Update manual tests and comments to refer to TestRunner instead of LayoutTestController
+ https://bugs.webkit.org/show_bug.cgi?id=94168
+
+ Reviewed by Kent Tamura.
+
+ * public/WebDevToolsAgent.h:
+ (WebDevToolsAgent):
+ * public/WebView.h:
+ (WebView):
+
2012-08-15 Alec Flett <[email protected]>
IndexedDB: generate index keys for existing data in createIndex in front end
Modified: trunk/Source/WebKit/chromium/public/WebDevToolsAgent.h (125737 => 125738)
--- trunk/Source/WebKit/chromium/public/WebDevToolsAgent.h 2012-08-16 02:35:29 UTC (rev 125737)
+++ trunk/Source/WebKit/chromium/public/WebDevToolsAgent.h 2012-08-16 02:40:21 UTC (rev 125738)
@@ -66,7 +66,7 @@
virtual void inspectElementAt(const WebPoint&) = 0;
virtual void setProcessId(long) = 0;
- // Exposed for LayoutTestController.
+ // Exposed for TestRunner.
virtual void evaluateInWebInspector(long callId, const WebString& script) = 0;
class MessageDescriptor {
Modified: trunk/Source/WebKit/chromium/public/WebView.h (125737 => 125738)
--- trunk/Source/WebKit/chromium/public/WebView.h 2012-08-16 02:35:29 UTC (rev 125737)
+++ trunk/Source/WebKit/chromium/public/WebView.h 2012-08-16 02:40:21 UTC (rev 125738)
@@ -507,7 +507,7 @@
// level is changed in this update from the previous update).
virtual void updateBatteryStatus(const WebBatteryStatus&) { }
- // Testing functionality for LayoutTestController -----------------------
+ // Testing functionality for TestRunner ---------------------------------
// Simulates a compositor lost context.
virtual void loseCompositorContext(int numTimes) = 0;
Modified: trunk/Source/WebKit/qt/Api/qwebelement.cpp (125737 => 125738)
--- trunk/Source/WebKit/qt/Api/qwebelement.cpp 2012-08-16 02:35:29 UTC (rev 125737)
+++ trunk/Source/WebKit/qt/Api/qwebelement.cpp 2012-08-16 02:40:21 UTC (rev 125738)
@@ -2057,7 +2057,7 @@
// loop since when we find an Element we do not recurse.
visitedObjects->remove(object);
} else if (object && object->inherits(&JSDocument::s_info)) {
- // To support LayoutTestControllerQt::nodesFromRect(), used in DRT, we do an implicit
+ // To support TestRunnerQt::nodesFromRect(), used in DRT, we do an implicit
// conversion from 'document' to the QWebElement representing the 'document.documentElement'.
// We can't simply use a QVariantMap in nodesFromRect() because it currently times out
// when serializing DOMMimeType and DOMPlugin, even if we limit the recursion.
Modified: trunk/Source/WebKit/qt/ChangeLog (125737 => 125738)
--- trunk/Source/WebKit/qt/ChangeLog 2012-08-16 02:35:29 UTC (rev 125737)
+++ trunk/Source/WebKit/qt/ChangeLog 2012-08-16 02:40:21 UTC (rev 125738)
@@ -1,3 +1,14 @@
+2012-08-15 Ryosuke Niwa <[email protected]>
+
+ Update manual tests and comments to refer to TestRunner instead of LayoutTestController
+ https://bugs.webkit.org/show_bug.cgi?id=94168
+
+ Reviewed by Kent Tamura.
+
+ * Api/qwebelement.cpp:
+ (convertJSValueToWebElementVariant):
+ * WebCoreSupport/DumpRenderTreeSupportQt.h:
+
2012-08-14 Adam Barth <[email protected]>
Delete Frame::domWindow() and Frame::existingDOMWindow()
Modified: trunk/Source/WebKit/qt/WebCoreSupport/DumpRenderTreeSupportQt.h (125737 => 125738)
--- trunk/Source/WebKit/qt/WebCoreSupport/DumpRenderTreeSupportQt.h 2012-08-16 02:35:29 UTC (rev 125737)
+++ trunk/Source/WebKit/qt/WebCoreSupport/DumpRenderTreeSupportQt.h 2012-08-16 02:40:21 UTC (rev 125738)
@@ -52,7 +52,7 @@
extern QMap<int, QWebScriptWorld*> m_worldMap;
-// Used to pass WebCore::Node's to layout tests using LayoutTestController
+// Used to pass WebCore::Node's to layout tests using TestRunner
class QWEBKIT_EXPORT QDRTNode {
public:
QDRTNode();
Modified: trunk/Source/WebKit/win/ChangeLog (125737 => 125738)
--- trunk/Source/WebKit/win/ChangeLog 2012-08-16 02:35:29 UTC (rev 125737)
+++ trunk/Source/WebKit/win/ChangeLog 2012-08-16 02:40:21 UTC (rev 125738)
@@ -1,3 +1,12 @@
+2012-08-15 Ryosuke Niwa <[email protected]>
+
+ Update manual tests and comments to refer to TestRunner instead of LayoutTestController
+ https://bugs.webkit.org/show_bug.cgi?id=94168
+
+ Reviewed by Kent Tamura.
+
+ * Interfaces/IWebPreferencesPrivate.idl:
+
2012-08-14 Adam Barth <[email protected]>
Delete Frame::domWindow() and Frame::existingDOMWindow()
Modified: trunk/Source/WebKit/win/Interfaces/IWebPreferencesPrivate.idl (125737 => 125738)
--- trunk/Source/WebKit/win/Interfaces/IWebPreferencesPrivate.idl 2012-08-16 02:35:29 UTC (rev 125737)
+++ trunk/Source/WebKit/win/Interfaces/IWebPreferencesPrivate.idl 2012-08-16 02:40:21 UTC (rev 125738)
@@ -88,7 +88,7 @@
HRESULT setShouldUseHighResolutionTimers([in] BOOL useHighResolutionTimers);
HRESULT shouldUseHighResolutionTimers([out, retval] BOOL* useHighResolutionTimers);
- // Used to set preference specified by a test via LayoutTestController.overridePreference(..).
+ // Used to set preference specified by a test via TestRunner.overridePreference(..).
// Used by DumpRenderTree.
HRESULT setPreferenceForTest([in] BSTR key, [in] BSTR value);
Modified: trunk/Source/WebKit2/ChangeLog (125737 => 125738)
--- trunk/Source/WebKit2/ChangeLog 2012-08-16 02:35:29 UTC (rev 125737)
+++ trunk/Source/WebKit2/ChangeLog 2012-08-16 02:40:21 UTC (rev 125738)
@@ -1,3 +1,13 @@
+2012-08-15 Ryosuke Niwa <[email protected]>
+
+ Update manual tests and comments to refer to TestRunner instead of LayoutTestController
+ https://bugs.webkit.org/show_bug.cgi?id=94168
+
+ Reviewed by Kent Tamura.
+
+ * Shared/WebPreferencesStore.cpp:
+ (WebKit::WebPreferencesStore::getBoolValueForKey):
+
2012-08-15 Bruno de Oliveira Abinader <[email protected]>
[css3-text] Add CSS3 Text decoration compile flag
Modified: trunk/Source/WebKit2/Shared/WebPreferencesStore.cpp (125737 => 125738)
--- trunk/Source/WebKit2/Shared/WebPreferencesStore.cpp 2012-08-16 02:35:29 UTC (rev 125737)
+++ trunk/Source/WebKit2/Shared/WebPreferencesStore.cpp 2012-08-16 02:40:21 UTC (rev 125738)
@@ -184,7 +184,7 @@
bool WebPreferencesStore::getBoolValueForKey(const String& key) const
{
- // FIXME: Extend overriding to other key types used from LayoutTestController.
+ // FIXME: Extend overriding to other key types used from TestRunner.
BoolOverridesMap::const_iterator it = boolTestRunnerOverridesMap().find(key);
if (it != boolTestRunnerOverridesMap().end())
return it->second;