Unreviewed. Fix GTK test /WebKit2Gtk/TestWebViewEditor

It's failing since we delay the web process launch until the first load. Load about:blank in the test
constructor to fix it.

* TestWebKitAPI/Tests/WebKitGtk/TestWebViewEditor.cpp:

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@251131 268f45cc-cd09-0410-ab3c-d52691b4dbfc
diff --git a/Tools/ChangeLog b/Tools/ChangeLog
index cad9f2b..e656046 100644
--- a/Tools/ChangeLog
+++ b/Tools/ChangeLog
@@ -1,5 +1,14 @@
 2019-10-15  Carlos Garcia Campos  <cgarcia@igalia.com>
 
+        Unreviewed. Fix GTK test /WebKit2Gtk/TestWebViewEditor
+
+        It's failing since we delay the web process launch until the first load. Load about:blank in the test
+        constructor to fix it.
+
+        * TestWebKitAPI/Tests/WebKitGtk/TestWebViewEditor.cpp:
+
+2019-10-15  Carlos Garcia Campos  <cgarcia@igalia.com>
+
         Unreviewed. Fix GTK test /webkit/Authentication/authentication-storage after r249962
 
         The test was still using the legacy private browsing API that is a no-op since r249962. This partch updates the
diff --git a/Tools/TestWebKitAPI/Tests/WebKitGtk/TestWebViewEditor.cpp b/Tools/TestWebKitAPI/Tests/WebKitGtk/TestWebViewEditor.cpp
index 0d09f02..fb14969 100644
--- a/Tools/TestWebKitAPI/Tests/WebKitGtk/TestWebViewEditor.cpp
+++ b/Tools/TestWebKitAPI/Tests/WebKitGtk/TestWebViewEditor.cpp
@@ -35,6 +35,8 @@
         , m_editorState(nullptr)
     {
         showInWindowAndWaitUntilMapped(GTK_WINDOW_TOPLEVEL);
+        loadURI("about:blank");
+        waitUntilLoadFinished();
         gtk_clipboard_clear(m_clipboard);
     }