Title: [233799] trunk/Tools
Revision
233799
Author
cdu...@apple.com
Date
2018-07-13 09:19:31 -0700 (Fri, 13 Jul 2018)

Log Message

Add a FrameLoaderClient willInjectUserScriptForFrame callback
https://bugs.webkit.org/show_bug.cgi?id=187565
<rdar://problem/42095701>

Unreviewed WKTR fix after r233782.

* WebKitTestRunner/TestInvocation.cpp:
(WTR::TestInvocation::didReceiveSynchronousMessageFromInjectedBundle):

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (233798 => 233799)


--- trunk/Tools/ChangeLog	2018-07-13 16:13:53 UTC (rev 233798)
+++ trunk/Tools/ChangeLog	2018-07-13 16:19:31 UTC (rev 233799)
@@ -1,5 +1,16 @@
 2018-07-13  Chris Dumez  <cdu...@apple.com>
 
+        Add a FrameLoaderClient willInjectUserScriptForFrame callback
+        https://bugs.webkit.org/show_bug.cgi?id=187565
+        <rdar://problem/42095701>
+
+        Unreviewed WKTR fix after r233782.
+
+        * WebKitTestRunner/TestInvocation.cpp:
+        (WTR::TestInvocation::didReceiveSynchronousMessageFromInjectedBundle):
+
+2018-07-13  Chris Dumez  <cdu...@apple.com>
+
         Reduce size of WebCore::URL
         https://bugs.webkit.org/show_bug.cgi?id=186820
         <rdar://problem/42087508>

Modified: trunk/Tools/WebKitTestRunner/TestInvocation.cpp (233798 => 233799)


--- trunk/Tools/WebKitTestRunner/TestInvocation.cpp	2018-07-13 16:13:53 UTC (rev 233798)
+++ trunk/Tools/WebKitTestRunner/TestInvocation.cpp	2018-07-13 16:19:31 UTC (rev 233799)
@@ -1419,6 +1419,7 @@
         WKStringRef script = static_cast<WKStringRef>(messageBody);
 
         TestController::singleton().injectUserScript(script);
+        return nullptr;
     }
 
     if (WKStringIsEqualToUTF8CString(messageName, "GetApplicationManifest")) {
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to