Changeset 246790 in webkit


Ignore:
Timestamp:
Jun 25, 2019 7:56:39 AM (5 years ago)
Author:
Michael Catanzaro
Message:

Fully rename WebKitGTK+ -> WebKitGTK everywhere
https://bugs.webkit.org/show_bug.cgi?id=199159

Reviewed by Carlos Garcia Campos.

.:

  • Source/cmake/FindGLIB.cmake:

Source/WebCore:

  • accessibility/atk/WebKitAccessibleInterfaceText.cpp:

(webkitAccessibleTextGetStringAtOffset):

  • platform/UserAgentQuirks.cpp:

(WebCore::urlRequiresMacintoshPlatform):

  • platform/network/soup/NetworkStorageSessionSoup.cpp:

(WebCore::NetworkStorageSession::saveCredentialToPersistentStorage):

  • rendering/RenderThemeGtk.cpp:

(WebCore::RenderThemeGtk::adjustTextFieldStyle const):

Source/WebKit:

  • UIProcess/API/glib/APIWebsiteDataStoreGLib.cpp:

Source/WTF:

  • wtf/URLParser.cpp:

(WTF::URLParser::internationalDomainNameTranscoder):

Tools:

  • BuildSlaveSupport/gtk/README:
  • MiniBrowser/gtk/BrowserWindow.c:
  • MiniBrowser/gtk/main.c:

(aboutURISchemeRequestCallback):

  • Scripts/webkitpy/common/config/contributionareas.py:
  • Scripts/webkitpy/common/config/contributors.json:
  • Scripts/webkitpy/tool/commands/analyzechangelog_unittest.py:
  • TestWebKitAPI/Tests/WebKitGLib/TestCookieManager.cpp:
  • TestWebKitAPI/Tests/WebKitGLib/TestResources.cpp:

(testWebViewResources):

  • TestWebKitAPI/Tests/WebKitGLib/TestUIClient.cpp:

(testWebViewMouseTarget):

  • TestWebKitAPI/Tests/WebKitGLib/TestWebExtensions.cpp:

(testWebExtensionGetTitle):
(testDocumentLoadedSignal):
(testWebExtensionFormControlsAssociated):

  • TestWebKitAPI/Tests/WebKitGLib/TestWebKitSettings.cpp:

(testWebKitSettingsUserAgent):

  • TestWebKitAPI/Tests/WebKitGLib/TestWebKitWebView.cpp:

(testWebViewRunJavaScript):

  • TestWebKitAPI/Tests/WebKitGtk/InspectorTestServer.cpp:

(main):

  • TestWebKitAPI/Tests/WebKitGtk/TestContextMenu.cpp:

(prepareContextMenuTestView):
(testContextMenuPopulateMenu):
(testContextMenuCustomMenu):
(testContextMenuDisableMenu):
(testContextMenuSubMenu):
(testContextMenuDismissed):
(testContextMenuWebExtensionMenu):
(testContextMenuWebExtensionNode):

  • TestWebKitAPI/Tests/WebKitGtk/TestInspector.cpp:

(testInspectorDefault):
(testInspectorManualAttachDetach):
(testInspectorCustomContainerDestroyed):

  • TestWebKitAPI/Tests/WebKitGtk/TestPrinting.cpp:

(testWebViewPrint):
(testPrintOperationPrint):
(testPrintOperationErrors):

  • gtk/install-dependencies:
  • gtk/jhbuild.modules:
  • gtkdoc/generate-gtkdoc:
  • wpe/install-dependencies:
Location:
trunk
Files:
32 edited

Legend:

Unmodified
Added
Removed
  • trunk/ChangeLog

    r246789 r246790  
     12019-06-25  Michael Catanzaro  <mcatanzaro@igalia.com>
     2
     3        Fully rename WebKitGTK+ -> WebKitGTK everywhere
     4        https://bugs.webkit.org/show_bug.cgi?id=199159
     5
     6        Reviewed by Carlos Garcia Campos.
     7
     8        * Source/cmake/FindGLIB.cmake:
     9
    1102019-06-25  Michael Catanzaro  <mcatanzaro@igalia.com>
    211
  • trunk/Source/WTF/ChangeLog

    r246789 r246790  
     12019-06-25  Michael Catanzaro  <mcatanzaro@igalia.com>
     2
     3        Fully rename WebKitGTK+ -> WebKitGTK everywhere
     4        https://bugs.webkit.org/show_bug.cgi?id=199159
     5
     6        Reviewed by Carlos Garcia Campos.
     7
     8        * wtf/URLParser.cpp:
     9        (WTF::URLParser::internationalDomainNameTranscoder):
     10
    1112019-06-25  Michael Catanzaro  <mcatanzaro@igalia.com>
    212
  • trunk/Source/WTF/wtf/URLParser.cpp

    r245983 r246790  
    28572857    std::call_once(onceFlag, [] {
    28582858        UErrorCode error = U_ZERO_ERROR;
    2859         // Warning: Please contact a WebKitGTK+ developer if changing these flags.
    2860         // They should be synced with ephy_uri_decode() in ephy-uri-helpers.c.
    28612859        encoder = uidna_openUTS46(UIDNA_CHECK_BIDI | UIDNA_CHECK_CONTEXTJ | UIDNA_NONTRANSITIONAL_TO_UNICODE | UIDNA_NONTRANSITIONAL_TO_ASCII, &error);
    28622860        RELEASE_ASSERT(U_SUCCESS(error));
  • trunk/Source/WebCore/ChangeLog

    r246786 r246790  
     12019-06-25  Michael Catanzaro  <mcatanzaro@igalia.com>
     2
     3        Fully rename WebKitGTK+ -> WebKitGTK everywhere
     4        https://bugs.webkit.org/show_bug.cgi?id=199159
     5
     6        Reviewed by Carlos Garcia Campos.
     7
     8        * accessibility/atk/WebKitAccessibleInterfaceText.cpp:
     9        (webkitAccessibleTextGetStringAtOffset):
     10        * platform/UserAgentQuirks.cpp:
     11        (WebCore::urlRequiresMacintoshPlatform):
     12        * platform/network/soup/NetworkStorageSessionSoup.cpp:
     13        (WebCore::NetworkStorageSession::saveCredentialToPersistentStorage):
     14        * rendering/RenderThemeGtk.cpp:
     15        (WebCore::RenderThemeGtk::adjustTextFieldStyle const):
     16
    1172019-06-25  Rob Buis  <rbuis@igalia.com>
    218
  • trunk/Source/WebCore/accessibility/atk/WebKitAccessibleInterfaceText.cpp

    r246677 r246790  
    12151215    // granularity to the right old boundary and reuse the code for the old API.
    12161216    // However, this should be simplified later on (and a lot of code removed) once
    1217     // WebKitGTK+ depends on ATK >= 2.9.4 *and* can safely assume that a version of
     1217    // WebKitGTK depends on ATK >= 2.9.4 *and* can safely assume that a version of
    12181218    // AT-SPI2 new enough not to include the old APIs is being used. But until then,
    12191219    // we will have to live with both the old and new APIs implemented here.
     1220    // FIXME: WebKit nowadays depends on much newer ATK and we can safely assume AT-SPI2
     1221    // isn't ancient. But whoever wrote this code didn't use ATK_CHECK_VERSION() guards,
     1222    // so it's unclear what is supposed to be changed here.
    12201223    AtkTextBoundary boundaryType = ATK_TEXT_BOUNDARY_CHAR;
    12211224    switch (granularity) {
  • trunk/Source/WebCore/platform/UserAgentQuirks.cpp

    r246733 r246790  
    7676    String baseDomain = topPrivatelyControlledDomain(domain);
    7777
    78     // At least finance.yahoo.com displays a mobile version with WebKitGTK+'s standard user agent.
     78    // At least finance.yahoo.com displays a mobile version with WebKitGTK's standard user agent.
    7979    if (baseDomain == "yahoo.com")
    8080        return true;
    8181
    82     // taobao.com displays a mobile version with WebKitGTK+'s standard user agent.
     82    // taobao.com displays a mobile version with WebKitGTK's standard user agent.
    8383    if (baseDomain == "taobao.com")
    8484        return true;
    8585
    86     // web.whatsapp.com completely blocks users with WebKitGTK+'s standard user agent.
     86    // web.whatsapp.com completely blocks users with WebKitGTK's standard user agent.
    8787    if (baseDomain == "whatsapp.com")
    8888        return true;
    8989
    90     // paypal.com completely blocks users with WebKitGTK+'s standard user agent.
     90    // paypal.com completely blocks users with WebKitGTK's standard user agent.
    9191    if (baseDomain == "paypal.com")
    9292        return true;
    9393
    9494    // chase.com displays a huge "please update your browser" warning with
    95     // WebKitGTK+'s standard user agent.
     95    // WebKitGTK's standard user agent.
    9696    if (baseDomain == "chase.com")
    9797        return true;
    9898
    99     // Microsoft Outlook Web App forces users with WebKitGTK+'s standard user
     99    // Microsoft Outlook Web App forces users with WebKitGTK's standard user
    100100    // agent to use the light version. Earlier versions even block users from
    101101    // accessing the calendar.
     
    106106
    107107    // Google Docs and Google Drive both show a scary unsupported browser
    108     // warning with WebKitGTK+'s standard user agent.
     108    // warning with WebKitGTK's standard user agent.
    109109    if (domain == "docs.google.com"
    110110        || domain == "drive.google.com")
  • trunk/Source/WebCore/platform/network/soup/NetworkStorageSessionSoup.cpp

    r245796 r246790  
    264264    CString utf8Password = credential.password().utf8();
    265265    GRefPtr<SecretValue> newSecretValue = adoptGRef(secret_value_new(utf8Password.data(), utf8Password.length(), "text/plain"));
    266     secret_service_store(nullptr, SECRET_SCHEMA_COMPAT_NETWORK, attributes.get(), SECRET_COLLECTION_DEFAULT, _("WebKitGTK+ password"),
     266    secret_service_store(nullptr, SECRET_SCHEMA_COMPAT_NETWORK, attributes.get(), SECRET_COLLECTION_DEFAULT, _("WebKitGTK password"),
    267267        newSecretValue.get(), nullptr, nullptr, nullptr);
    268268#else
  • trunk/Source/WebCore/rendering/RenderThemeGtk.cpp

    r246677 r246790  
    501501    // The default theme for the GTK+ port uses very wide spin buttons (66px) compared to what other
    502502    // browsers use (~13 px). And unfortunately, most of the web developers won't test how their site
    503     // renders on WebKitGTK+. To ensure that spin buttons don't end up covering the values of the input
     503    // renders on WebKitGTK. To ensure that spin buttons don't end up covering the values of the input
    504504    // field, we override the width of the input element and always increment it with the width needed
    505505    // for the spinbutton (when drawing the spinbutton).
  • trunk/Source/WebKit/ChangeLog

    r246767 r246790  
     12019-06-25  Michael Catanzaro  <mcatanzaro@igalia.com>
     2
     3        Fully rename WebKitGTK+ -> WebKitGTK everywhere
     4        https://bugs.webkit.org/show_bug.cgi?id=199159
     5
     6        Reviewed by Carlos Garcia Campos.
     7
     8        * UIProcess/API/glib/APIWebsiteDataStoreGLib.cpp:
     9
    1102019-06-24  Brady Eidson  <beidson@apple.com>
    211
  • trunk/Source/WebKit/UIProcess/API/glib/APIWebsiteDataStoreGLib.cpp

    r242289 r246790  
    4343}
    4444
    45 // FIXME: The other directories in this file are shared between all applications using WebKitGTK+.
     45// FIXME: The other directories in this file are shared between all applications using WebKitGTK.
    4646// Why is only this directory namespaced to a particular application?
    4747WTF::String WebsiteDataStore::defaultNetworkCacheDirectory()
  • trunk/Source/cmake/FindGLIB.cmake

    r197350 r246790  
    101101        # gio-unix is compiled as part of the gio library, but the include paths
    102102        # are separate from the shared glib ones. Since this is currently only used
    103         # by WebKitGTK+ we don't go to extraordinary measures beyond pkg-config.
     103        # by WebKitGTK we don't go to extraordinary measures beyond pkg-config.
    104104        pkg_check_modules(GIO_UNIX QUIET gio-unix-2.0)
    105105    endif ()
  • trunk/Tools/BuildSlaveSupport/gtk/README

    r113037 r246790  
    33==============================================
    44
    5 This directory contains several scripts which can be used to run a WebKitGTK+
     5This directory contains several scripts which can be used to run a WebKitGTK
    66build slave under daemontools [1]. This is convenient because daemontools
    77will automatically restart services when they die, and that means less human
  • trunk/Tools/ChangeLog

    r246751 r246790  
     12019-06-25  Michael Catanzaro  <mcatanzaro@igalia.com>
     2
     3        Fully rename WebKitGTK+ -> WebKitGTK everywhere
     4        https://bugs.webkit.org/show_bug.cgi?id=199159
     5
     6        Reviewed by Carlos Garcia Campos.
     7
     8        * BuildSlaveSupport/gtk/README:
     9        * MiniBrowser/gtk/BrowserWindow.c:
     10        * MiniBrowser/gtk/main.c:
     11        (aboutURISchemeRequestCallback):
     12        * Scripts/webkitpy/common/config/contributionareas.py:
     13        * Scripts/webkitpy/common/config/contributors.json:
     14        * Scripts/webkitpy/tool/commands/analyzechangelog_unittest.py:
     15        * TestWebKitAPI/Tests/WebKitGLib/TestCookieManager.cpp:
     16        * TestWebKitAPI/Tests/WebKitGLib/TestResources.cpp:
     17        (testWebViewResources):
     18        * TestWebKitAPI/Tests/WebKitGLib/TestUIClient.cpp:
     19        (testWebViewMouseTarget):
     20        * TestWebKitAPI/Tests/WebKitGLib/TestWebExtensions.cpp:
     21        (testWebExtensionGetTitle):
     22        (testDocumentLoadedSignal):
     23        (testWebExtensionFormControlsAssociated):
     24        * TestWebKitAPI/Tests/WebKitGLib/TestWebKitSettings.cpp:
     25        (testWebKitSettingsUserAgent):
     26        * TestWebKitAPI/Tests/WebKitGLib/TestWebKitWebView.cpp:
     27        (testWebViewRunJavaScript):
     28        * TestWebKitAPI/Tests/WebKitGtk/InspectorTestServer.cpp:
     29        (main):
     30        * TestWebKitAPI/Tests/WebKitGtk/TestContextMenu.cpp:
     31        (prepareContextMenuTestView):
     32        (testContextMenuPopulateMenu):
     33        (testContextMenuCustomMenu):
     34        (testContextMenuDisableMenu):
     35        (testContextMenuSubMenu):
     36        (testContextMenuDismissed):
     37        (testContextMenuWebExtensionMenu):
     38        (testContextMenuWebExtensionNode):
     39        * TestWebKitAPI/Tests/WebKitGtk/TestInspector.cpp:
     40        (testInspectorDefault):
     41        (testInspectorManualAttachDetach):
     42        (testInspectorCustomContainerDestroyed):
     43        * TestWebKitAPI/Tests/WebKitGtk/TestPrinting.cpp:
     44        (testWebViewPrint):
     45        (testPrintOperationPrint):
     46        (testPrintOperationErrors):
     47        * gtk/install-dependencies:
     48        * gtk/jhbuild.modules:
     49        * gtkdoc/generate-gtkdoc:
     50        * wpe/install-dependencies:
     51
    1522019-06-24  Michael Catanzaro  <mcatanzaro@igalia.com>
    253
  • trunk/Tools/MiniBrowser/gtk/BrowserWindow.c

    r245007 r246790  
    7373};
    7474
    75 static const char *defaultWindowTitle = "WebKitGTK+ MiniBrowser";
     75static const char *defaultWindowTitle = "WebKitGTK MiniBrowser";
    7676static const gdouble minimumZoomLevel = 0.5;
    7777static const gdouble maximumZoomLevel = 3;
  • trunk/Tools/MiniBrowser/gtk/main.c

    r246353 r246790  
    442442    path = webkit_uri_scheme_request_get_path(request);
    443443    if (!g_strcmp0(path, "minibrowser")) {
    444         contents = g_strdup_printf("<html><body><h1>WebKitGTK+ MiniBrowser</h1><p>The WebKit2 test browser of the GTK+ port.</p><p>WebKit version: %d.%d.%d</p></body></html>",
     444        contents = g_strdup_printf("<html><body><h1>WebKitGTK MiniBrowser</h1><p>The test browser of WebKitGTK</p><p>WebKit version: %d.%d.%d</p></body></html>",
    445445            webkit_get_major_version(),
    446446            webkit_get_minor_version(),
  • trunk/Tools/Scripts/webkitpy/common/config/contributionareas.py

    r217216 r246790  
    136136# FIXME: 'Text Layout'
    137137    _Area('The Chromium Port', ['chromium']),
    138     _Area('The WebKitGTK+ Port', ['gtk']),
     138    _Area('The WebKitGTK Port', ['gtk']),
    139139    _Area('The Haiku Port', ['haiku']),
    140140    _Area('The QtWebKit Port', ['qt']),
  • trunk/Tools/Scripts/webkitpy/common/config/contributors.json

    r246751 r246790  
    246246         "alex@webkit.org"
    247247      ],
    248       "expertise" : "WebKitGTK+, Cairo graphics backend, ShadowBlur rendering, Epiphany/WebKit Contributor",
     248      "expertise" : "WebKitGTK, Cairo graphics backend, ShadowBlur rendering, Epiphany/WebKit Contributor",
    249249      "nicks" : [
    250250         "alexg__"
     
    422422         "alp@webkit.org"
    423423      ],
    424       "expertise" : "GTK+ WebKit Port, Cairo graphics backend (including canvas, SVG), CURL HTTP backend",
     424      "expertise" : "WebKitGTK Port, Cairo graphics backend (including canvas, SVG), CURL HTTP backend",
    425425      "nicks" : [
    426426         "alp"
     
    509509         "agomez@gnome.org"
    510510      ],
    511       "expertise" : "WebKitGTK+",
     511      "expertise" : "WebKitGTK",
    512512      "nicks" : [
    513513         "tanty",
     
    597597         "wingo@igalia.com"
    598598      ],
    599       "expertise" : "JavaScriptCore, the WebKitGTK+ port",
     599      "expertise" : "JavaScriptCore, the WebKitGTK port",
    600600      "nicks" : [
    601601         "wingo"
     
    673673         "a.obzhirov@samsung.com"
    674674      ],
    675       "expertise" : "The WebKitGTK+ Port",
     675      "expertise" : "The WebKitGTK Port",
    676676      "nicks" : [
    677677         "aobzhirov"
     
    859859         "otte@webkit.org"
    860860      ],
    861       "expertise" : "WebKitGTK+ port, GTK+ lead developer",
     861      "expertise" : "WebKitGTK port, GTK lead developer",
    862862      "nicks" : [
    863863         "otte"
     
    917917         "b.long@cablelabs.com"
    918918      ],
    919       "expertise" : "WebKitGTK+, GStreamer",
     919      "expertise" : "WebKitGTK, GStreamer",
    920920      "nicks" : [
    921921         "brendanlong"
     
    958958         "brian.holt@samsung.com"
    959959      ],
    960       "expertise" : "WebKitGTK+, memory leak detection",
     960      "expertise" : "WebKitGTK, memory leak detection",
    961961      "nicks" : [
    962962         "bdholt1"
     
    10571057         "clopez@igalia.com"
    10581058      ],
    1059       "expertise" : "The WebKitGTK+ port, Tools, Build/test infrastructure",
     1059      "expertise" : "The WebKitGTK port, Tools, Build/test infrastructure",
    10601060      "nicks" : [
    10611061         "clopez"
     
    10781078         "carlosgc@webkit.org"
    10791079      ],
    1080       "expertise" : "The WebKitGTK+ Port, WebKit2, Glib unicode backend, GTK+ contributor, Epiphany contributor",
     1080      "expertise" : "The WebKitGTK Port, WebKit2, Glib unicode backend, GTK contributor, Epiphany contributor",
    10811081      "nicks" : [
    10821082         "KaL"
     
    11171117         "changseok@webkit.org"
    11181118      ],
    1119       "expertise" : "The WebKitGTK+ port, H/W acceleration, Layout and Rendering",
     1119      "expertise" : "The WebKitGTK port, H/W acceleration, Layout and Rendering",
    11201120      "nicks" : [
    11211121         "changseok"
     
    12711271         "csaavedra@igalia.com"
    12721272      ],
    1273       "expertise" : "WebKitGTK+ port, Epiphany developer, HTML Editing",
     1273      "expertise" : "WebKitGTK port, Epiphany developer, HTML Editing",
    12741274      "nicks" : [
    12751275         "claudio___"
     
    15721572         "d.nomiyama@samsung.com"
    15731573      ],
    1574       "expertise" : "The WebKitGTK+ Port",
     1574      "expertise" : "The WebKitGTK Port",
    15751575      "nicks" : [
    15761576         "dnomi"
     
    22372237         "gustavo.noronha@collabora.com"
    22382238      ],
    2239       "expertise" : "WebKitGTK+ API, Soup HTTP backend, Debian Packaging, A little bit of Epiphany",
     2239      "expertise" : "WebKitGTK API, Soup HTTP backend, Debian Packaging, A little bit of Epiphany",
    22402240      "nicks" : [
    22412241         "kov"
     
    22492249         "ryumiel@company100.net"
    22502250      ],
    2251       "expertise" : "Accelerated Compositing, WebKitGTK+",
     2251      "expertise" : "Accelerated Compositing, WebKitGTK",
    22522252      "nicks" : [
    22532253         "ryumiel"
     
    23502350         "zecke@webkit.org"
    23512351      ],
    2352       "expertise" : "The QtWebKit Port, The GTK+ WebKit Port",
     2352      "expertise" : "The QtWebKit Port, The WebKitGTK Port",
    23532353      "nicks" : [
    23542354         "zecke"
     
    27852785         "jdiggs@igalia.com"
    27862786      ],
    2787       "expertise" : "Accessibility, WebKitGTK+",
     2787      "expertise" : "Accessibility, WebKitGTK",
    27882788      "nicks" : [
    27892789         "joanie"
     
    29842984         "joone.hur@collabora.co.uk"
    29852985      ],
    2986       "expertise" : "The WebKitGtk+ port",
     2986      "expertise" : "The WebKitGTK port",
    29872987      "nicks" : [
    29882988         "joone"
     
    36473647         "rego@igalia.com"
    36483648      ],
    3649       "expertise" : "Layout, CSS, Selection, WebKitGTK+ port",
     3649      "expertise" : "Layout, CSS, Selection, WebKitGTK port",
    36503650      "nicks" : [
    36513651         "rego",
     
    36753675         "msanchez@igalia.com"
    36763676      ],
    3677       "expertise" : "WebKitGTK+, Accessibility, WebKit2, Epiphany/WebKit Contributor",
     3677      "expertise" : "WebKitGTK, Accessibility, WebKit2, Epiphany/WebKit Contributor",
    36783678      "nicks" : [
    36793679         "msanchez"
     
    37413741         "martin.james.robinson@gmail.com"
    37423742      ],
    3743       "expertise" : "The WebKitGTK+ Port, Cairo graphics backend, soup HTTP backend",
     3743      "expertise" : "The WebKitGTK Port, Cairo graphics backend, soup HTTP backend",
    37443744      "nicks" : [
    37453745         "mrobinson"
     
    38893889         "mcatanzaro@gnome.org"
    38903890      ],
    3891       "expertise" : "The WebKitGTK+ Port, Epiphany, Soup HTTP Backend",
     3891      "expertise" : "The WebKitGTK Port, Epiphany, Soup HTTP Backend",
    38923892      "nicks" : [
    38933893         "mcatanzaro"
     
    39433943         "magomez@igalia.com"
    39443944      ],
    3945       "expertise" : "The WebKitGTK+ port, Accelerated Compositing, HW acceleration",
     3945      "expertise" : "The WebKitGTK port, Accelerated Compositing, HW acceleration",
    39463946      "nicks" : [
    39473947         "magomez"
     
    44074407         "philn@igalia.com"
    44084408      ],
    4409       "expertise" : "WebKitGTK+, Media support (focused on the GStreamer implementation)",
     4409      "expertise" : "WebKitGTK, Media support (focused on the GStreamer implementation)",
    44104410      "nicks" : [
    44114411         "philn"
     
    48004800         "sebastian.droege@collabora.com"
    48014801      ],
    4802       "expertise" : "WebKitGTK+, Media support (focused on the GStreamer implementation)",
     4802      "expertise" : "WebKitGTK, Media support (focused on the GStreamer implementation)",
    48034803      "nicks" : [
    48044804         "slomo"
     
    48294829         "sergio@webkit.org"
    48304830      ],
    4831       "expertise" : "WebKitGTK+ port, WebKit2, CSS Grid Layout, libsoup",
     4831      "expertise" : "WebKitGTK port, WebKit2, CSS Grid Layout, libsoup",
    48324832      "nicks" : [
    48334833         "svillar"
     
    54585458      ]
    54595459   },
    5460    "WebKitGTK+ Bugs" : {
     5460   "WebKitGTK Bugs" : {
    54615461      "class" : "bot",
    54625462      "emails" : [
     
    54975497         "xrcalvar@igalia.com"
    54985498      ],
    5499       "expertise" : "WebKitGTK+, GStreamer, Streams API",
     5499      "expertise" : "WebKitGTK, GStreamer, Streams API",
    55005500      "nicks" : [
    55015501         "calvaris"
     
    55105510         "xlopez@igalia.com"
    55115511      ],
    5512       "expertise" : "WebKitGTK+, Soup HTTP Backend, libsoup Contributor, WebKit a11y (focused on the ATK implementation), Epiphany/WebKit maintainer",
     5512      "expertise" : "WebKitGTK, Soup HTTP Backend, libsoup Contributor, WebKit a11y (focused on the ATK implementation), Epiphany/WebKit maintainer",
    55135513      "nicks" : [
    55145514         "xan"
  • trunk/Tools/Scripts/webkitpy/tool/commands/analyzechangelog_unittest.py

    r227427 r246790  
    169169            'foo/platform/audio/gtk/AudioBusGtk.cpp': 1}
    170170        author_expectation_for_audio_patch = {'reviews': {'files': {}, 'total': 0, 'areas': {}},
    171             'patches': {'files': files_for_audio_patch, 'areas': {'The WebKitGTK+ Port': 1}, 'unreviewed': 0, 'reviewed': 1}}
     171            'patches': {'files': files_for_audio_patch, 'areas': {'The WebKitGTK Port': 1}, 'unreviewed': 0, 'reviewed': 1}}
    172172        self.assertEqual(analyzer.contributors_statistics()[u'Martin Robinson'],
    173             {'reviews': {'files': files_for_audio_patch, 'total': 1, 'areas': {'The WebKitGTK+ Port': 1}},
     173            {'reviews': {'files': files_for_audio_patch, 'total': 1, 'areas': {'The WebKitGTK Port': 1}},
    174174                'patches': {'files': {}, 'areas': {}, 'unreviewed': 0, 'reviewed': 0}})
    175175        self.assertEqual(analyzer.contributors_statistics()[u'Philippe Normand'], author_expectation_for_audio_patch)
     
    178178        areas_statistics = analyzer.areas_statistics()
    179179        areas_with_patches = [area for area in areas_statistics if areas_statistics[area]['reviewed'] or areas_statistics[area]['unreviewed']]
    180         self.assertEqual(set(areas_with_patches), set(['Bindings', 'Network', 'The WebKitGTK+ Port']))
     180        self.assertEqual(set(areas_with_patches), set(['Bindings', 'Network', 'The WebKitGTK Port']))
    181181        self.assertEqual(areas_statistics['Bindings'], {'unreviewed': 1, 'reviewed': 0, 'contributors':
    182182            {u'Kevin Ollivier': {'reviews': 0, 'unreviewed': 1, 'reviewed': 0}}})
  • trunk/Tools/TestWebKitAPI/Tests/WebKitGLib/TestCookieManager.cpp

    r241024 r246790  
    4040static const char* kIndexHtmlFormat =
    4141    "<html><body>"
    42     " <p>WebKitGTK+ Cookie Manager test</p>"
     42    " <p>WebKitGTK Cookie Manager test</p>"
    4343    " <img src='http://localhost:%u/image.png' width=5 height=5></img>"
    4444    "</body></html>";
  • trunk/Tools/TestWebKitAPI/Tests/WebKitGLib/TestResources.cpp

    r246677 r246790  
    3232    " <link rel='stylesheet' href='/style.css' type='text/css'>"
    3333    " <script language='javascript' src='/javascript.js'></script>"
    34     "</head><body>WebKitGTK+ resources test</body></html>";
     34    "</head><body>WebKitGTK resources test</body></html>";
    3535
    3636static const char* kStyleCSS =
     
    217217
    218218    // Load simple page without subresources.
    219     test->loadHtml("<html><body>Testing WebKitGTK+</body></html>", 0);
     219    test->loadHtml("<html><body>Testing WebKitGTK</body></html>", 0);
    220220    test->waitUntilLoadFinished();
    221221    WebKitWebResource* resource = webkit_web_view_get_main_resource(test->m_webView);
  • trunk/Tools/TestWebKitAPI/Tests/WebKitGLib/TestUIClient.cpp

    r245618 r246790  
    2525#include <wtf/text/StringHash.h>
    2626
    27 static const char* kAlertDialogMessage = "WebKitGTK+ alert dialog message";
    28 static const char* kConfirmDialogMessage = "WebKitGTK+ confirm dialog message";
    29 static const char* kPromptDialogMessage = "WebKitGTK+ prompt dialog message";
    30 static const char* kPromptDialogReturnedText = "WebKitGTK+ prompt dialog returned text";
    31 static const char* kBeforeUnloadConfirmDialogMessage = "WebKitGTK+ beforeunload dialog message";
     27static const char* kAlertDialogMessage = "WebKitGTK alert dialog message";
     28static const char* kConfirmDialogMessage = "WebKitGTK confirm dialog message";
     29static const char* kPromptDialogMessage = "WebKitGTK prompt dialog message";
     30static const char* kPromptDialogReturnedText = "WebKitGTK prompt dialog returned text";
     31static const char* kBeforeUnloadConfirmDialogMessage = "WebKitGTK beforeunload dialog message";
    3232
    3333class UIClientTest: public WebViewTest {
     
    687687        " </script>"
    688688        "</head><body>"
    689         " <a style='position:absolute; left:1; top:1' href='http://www.webkitgtk.org' title='WebKitGTK+ Title'>WebKitGTK+ Website</a>"
     689        " <a style='position:absolute; left:1; top:1' href='http://www.webkitgtk.org' title='WebKitGTK Title'>WebKitGTK Website</a>"
    690690        " <img style='position:absolute; left:1; top:10' src='0xdeadbeef' width=5 height=5></img>"
    691         " <a style='position:absolute; left:1; top:20' href='http://www.webkitgtk.org/logo' title='WebKitGTK+ Logo'><img src='0xdeadbeef' width=5 height=5></img></a>"
     691        " <a style='position:absolute; left:1; top:20' href='http://www.webkitgtk.org/logo' title='WebKitGTK Logo'><img src='0xdeadbeef' width=5 height=5></img></a>"
    692692        " <input style='position:absolute; left:1; top:30' size='10'></input>"
    693693        " <video style='position:absolute; left:1; top:100' width='300' height='300' controls='controls' preload='none'><source src='movie.ogg' type='video/ogg' /></video>"
     
    706706    g_assert_false(webkit_hit_test_result_context_is_selection(hitTestResult));
    707707    g_assert_cmpstr(webkit_hit_test_result_get_link_uri(hitTestResult), ==, "http://www.webkitgtk.org/");
    708     g_assert_cmpstr(webkit_hit_test_result_get_link_title(hitTestResult), ==, "WebKitGTK+ Title");
    709     g_assert_cmpstr(webkit_hit_test_result_get_link_label(hitTestResult), ==, "WebKitGTK+ Website");
     708    g_assert_cmpstr(webkit_hit_test_result_get_link_title(hitTestResult), ==, "WebKitGTK Title");
     709    g_assert_cmpstr(webkit_hit_test_result_get_link_label(hitTestResult), ==, "WebKitGTK Website");
    710710    g_assert_cmpuint(test->m_mouseTargetModifiers, ==, 0);
    711711
     
    740740    g_assert_cmpstr(webkit_hit_test_result_get_link_uri(hitTestResult), ==, "http://www.webkitgtk.org/logo");
    741741    g_assert_cmpstr(webkit_hit_test_result_get_image_uri(hitTestResult), ==, "file:///0xdeadbeef");
    742     g_assert_cmpstr(webkit_hit_test_result_get_link_title(hitTestResult), ==, "WebKitGTK+ Logo");
     742    g_assert_cmpstr(webkit_hit_test_result_get_link_title(hitTestResult), ==, "WebKitGTK Logo");
    743743    g_assert_false(webkit_hit_test_result_get_link_label(hitTestResult));
    744744    g_assert_cmpuint(test->m_mouseTargetModifiers, ==, 0);
  • trunk/Tools/TestWebKitAPI/Tests/WebKitGLib/TestWebExtensions.cpp

    r245514 r246790  
    3535static void testWebExtensionGetTitle(WebViewTest* test, gconstpointer)
    3636{
    37     test->loadHtml("<html><head><title>WebKitGTK+ Web Extensions Test</title></head><body></body></html>", 0);
     37    test->loadHtml("<html><head><title>WebKitGTK Web Extensions Test</title></head><body></body></html>", 0);
    3838    test->waitUntilLoadFinished();
    3939
     
    5151    const char* title;
    5252    g_variant_get(result.get(), "(&s)", &title);
    53     g_assert_cmpstr(title, ==, "WebKitGTK+ Web Extensions Test");
     53    g_assert_cmpstr(title, ==, "WebKitGTK Web Extensions Test");
    5454}
    5555
     
    131131    g_assert_cmpuint(id, !=, 0);
    132132
    133     test->loadHtml("<html><head><title>WebKitGTK+ Web Extensions Test</title></head><body></body></html>", 0);
     133    test->loadHtml("<html><head><title>WebKitGTK Web Extensions Test</title></head><body></body></html>", 0);
    134134    g_main_loop_run(test->m_mainLoop);
    135135    g_dbus_connection_signal_unsubscribe(connection, id);
     
    309309    g_assert_cmpuint(id, !=, 0);
    310310
    311     test->loadHtml("<!DOCTYPE html><head><title>WebKitGTK+ Web Extensions Test</title></head><div id=\"placeholder\"/>", 0);
     311    test->loadHtml("<!DOCTYPE html><head><title>WebKitGTK Web Extensions Test</title></head><div id=\"placeholder\"/>", 0);
    312312    test->waitUntilLoadFinished();
    313313
  • trunk/Tools/TestWebKitAPI/Tests/WebKitGLib/TestWebKitSettings.cpp

    r246352 r246790  
    418418    assertThatUserAgentIsSentInHeaders(test, funkyUserAgent);
    419419
    420     webkit_settings_set_user_agent_with_application_details(settings.get(), "WebKitGTK+", 0);
     420    webkit_settings_set_user_agent_with_application_details(settings.get(), "WebKitGTK", 0);
    421421    const char* userAgentWithNullVersion = webkit_settings_get_user_agent(settings.get());
    422422    g_assert_cmpstr(g_strstr_len(userAgentWithNullVersion, -1, defaultUserAgent.data()), ==, userAgentWithNullVersion);
    423     g_assert_nonnull(g_strstr_len(userAgentWithNullVersion, -1, "WebKitGTK+"));
    424 
    425     webkit_settings_set_user_agent_with_application_details(settings.get(), "WebKitGTK+", "");
     423    g_assert_nonnull(g_strstr_len(userAgentWithNullVersion, -1, "WebKitGTK"));
     424
     425    webkit_settings_set_user_agent_with_application_details(settings.get(), "WebKitGTK", "");
    426426    g_assert_cmpstr(webkit_settings_get_user_agent(settings.get()), ==, userAgentWithNullVersion);
    427427
  • trunk/Tools/TestWebKitAPI/Tests/WebKitGLib/TestWebKitWebView.cpp

    r242082 r246790  
    298298static void testWebViewRunJavaScript(WebViewTest* test, gconstpointer)
    299299{
    300     static const char* html = "<html><body><a id='WebKitLink' href='http://www.webkitgtk.org/' title='WebKitGTK+ Title'>WebKitGTK+ Website</a></body></html>";
     300    static const char* html = "<html><body><a id='WebKitLink' href='http://www.webkitgtk.org/' title='WebKitGTK Title'>WebKitGTK Website</a></body></html>";
    301301    test->loadHtml(html, 0);
    302302    test->waitUntilLoadFinished();
     
    308308    g_assert_no_error(error.get());
    309309    GUniquePtr<char> valueString(WebViewTest::javascriptResultToCString(javascriptResult));
    310     g_assert_cmpstr(valueString.get(), ==, "WebKitGTK+ Title");
     310    g_assert_cmpstr(valueString.get(), ==, "WebKitGTK Title");
    311311
    312312    javascriptResult = test->runJavaScriptAndWaitUntilFinished("window.document.getElementById('WebKitLink').href;", &error.outPtr());
     
    322322    g_assert_no_error(error.get());
    323323    valueString.reset(WebViewTest::javascriptResultToCString(javascriptResult));
    324     g_assert_cmpstr(valueString.get(), ==, "WebKitGTK+ Website");
     324    g_assert_cmpstr(valueString.get(), ==, "WebKitGTK Website");
    325325
    326326    javascriptResult = test->runJavaScriptAndWaitUntilFinished("a = 25;", &error.outPtr());
     
    365365    g_assert_no_error(error.get());
    366366    valueString.reset(WebViewTest::javascriptResultToCString(javascriptResult));
    367     g_assert_cmpstr(valueString.get(), ==, "WebKitGTK+ Title");
     367    g_assert_cmpstr(valueString.get(), ==, "WebKitGTK Title");
    368368
    369369    javascriptResult = test->runJavaScriptFromGResourceAndWaitUntilFinished("/wrong/path/to/resource.js", &error.outPtr());
  • trunk/Tools/TestWebKitAPI/Tests/WebKitGtk/InspectorTestServer.cpp

    r215683 r246790  
    3838    webkit_settings_set_enable_developer_extras(webkit_web_view_get_settings(webView), TRUE);
    3939    webkit_web_view_load_html(webView,
    40         "<html><body><p>WebKitGTK+ Inspector Test Server</p></body></html>",
     40        "<html><body><p>WebKitGTK Inspector Test Server</p></body></html>",
    4141        "http://127.0.0.1:2999/");
    4242
  • trunk/Tools/TestWebKitAPI/Tests/WebKitGtk/TestContextMenu.cpp

    r245460 r246790  
    438438    const char* linksHTML =
    439439        "<html><body>"
    440         " <a style='position:absolute; left:1; top:1' href='http://www.webkitgtk.org' title='WebKitGTK+ Title'>WebKitGTK+ Website</a>"
     440        " <a style='position:absolute; left:1; top:1' href='http://www.webkitgtk.org' title='WebKitGTK Title'>WebKitGTK Website</a>"
    441441        " <img style='position:absolute; left:1; top:10' src='blank.ico' width=5 height=5></img>"
    442         " <a style='position:absolute; left:1; top:20' href='http://www.webkitgtk.org/logo' title='WebKitGTK+ Logo'><img src='blank.ico' width=5 height=5></img></a>"
     442        " <a style='position:absolute; left:1; top:20' href='http://www.webkitgtk.org/logo' title='WebKitGTK Logo'><img src='blank.ico' width=5 height=5></img></a>"
    443443        " <input style='position:absolute; left:1; top:30' size='10'></input>"
    444444        " <video style='position:absolute; left:1; top:50' width='300' height='300' controls='controls' preload='none'><source src='silence.webm' type='video/webm' /></video>"
     
    636636    test->showInWindowAndWaitUntilMapped();
    637637
    638     test->loadHtml("<html><body>WebKitGTK+ Context menu tests</body></html>", "file:///");
     638    test->loadHtml("<html><body>WebKitGTK Context menu tests</body></html>", "file:///");
    639639    test->waitUntilLoadFinished();
    640640
    641641    // Create a custom menu item.
    642     GRefPtr<GtkAction> action = adoptGRef(gtk_action_new("WebKitGTK+CustomAction", "Custom _Action", nullptr, nullptr));
     642    GRefPtr<GtkAction> action = adoptGRef(gtk_action_new("WebKitGTKCustomAction", "Custom _Action", nullptr, nullptr));
    643643    test->setAction(action.get());
    644644    test->showContextMenuAndWaitUntilFinished();
     
    648648
    649649    // Create a custom toggle menu item.
    650     GRefPtr<GtkAction> toggleAction = adoptGRef(GTK_ACTION(gtk_toggle_action_new("WebKitGTK+CustomToggleAction", "Custom _Toggle Action", nullptr, nullptr)));
     650    GRefPtr<GtkAction> toggleAction = adoptGRef(GTK_ACTION(gtk_toggle_action_new("WebKitGTKCustomToggleAction", "Custom _Toggle Action", nullptr, nullptr)));
    651651    test->setAction(toggleAction.get());
    652652    test->showContextMenuAndWaitUntilFinished();
     
    656656
    657657    // Create a custom menu item using GAction.
    658     GRefPtr<GAction> gAction = adoptGRef(G_ACTION(g_simple_action_new("WebKitGTK+CustomGAction", nullptr)));
     658    GRefPtr<GAction> gAction = adoptGRef(G_ACTION(g_simple_action_new("WebKitGTKCustomGAction", nullptr)));
    659659    test->setAction(gAction.get(), "Custom _GAction");
    660660    test->showContextMenuAndWaitUntilFinished();
     
    664664
    665665    // Create a custom toggle menu item using GAction.
    666     GRefPtr<GAction> toggleGAction = adoptGRef(G_ACTION(g_simple_action_new_stateful("WebKitGTK+CustomToggleGAction", nullptr, g_variant_new_boolean(FALSE))));
     666    GRefPtr<GAction> toggleGAction = adoptGRef(G_ACTION(g_simple_action_new_stateful("WebKitGTKCustomToggleGAction", nullptr, g_variant_new_boolean(FALSE))));
    667667    test->setAction(toggleGAction.get(), "Custom _Toggle GAction");
    668668    test->showContextMenuAndWaitUntilFinished();
     
    672672
    673673    // Create a custom menu item using GAction with a target.
    674     gAction = adoptGRef(G_ACTION(g_simple_action_new("WebKitGTK+CustomGActionWithTarget", G_VARIANT_TYPE_STRING)));
    675     test->setAction(gAction.get(), "Custom _GAction With Target", g_variant_new_string("WebKitGTK+CustomGActionTarget"));
     674    gAction = adoptGRef(G_ACTION(g_simple_action_new("WebKitGTKCustomGActionWithTarget", G_VARIANT_TYPE_STRING)));
     675    test->setAction(gAction.get(), "Custom _GAction With Target", g_variant_new_string("WebKitGTKCustomGActionTarget"));
    676676    test->showContextMenuAndWaitUntilFinished();
    677677    test->activateCustomMenuItemAndWaitUntilActivated("Custom _GAction With Target");
     
    696696        // Add custom actions.
    697697        G_GNUC_BEGIN_IGNORE_DEPRECATIONS;
    698         GRefPtr<GtkAction> action = adoptGRef(gtk_action_new("WebKitGTK+CustomAction", "Custom _Action", nullptr, nullptr));
     698        GRefPtr<GtkAction> action = adoptGRef(gtk_action_new("WebKitGTKCustomAction", "Custom _Action", nullptr, nullptr));
    699699        gtk_action_set_sensitive(action.get(), FALSE);
    700700        webkit_context_menu_insert(contextMenu, webkit_context_menu_item_new(action.get()), -1);
    701         GRefPtr<GtkAction> toggleAction = adoptGRef(GTK_ACTION(gtk_toggle_action_new("WebKitGTK+CustomToggleAction", "Custom _Toggle Action", nullptr, nullptr)));
     701        GRefPtr<GtkAction> toggleAction = adoptGRef(GTK_ACTION(gtk_toggle_action_new("WebKitGTKCustomToggleAction", "Custom _Toggle Action", nullptr, nullptr)));
    702702        gtk_toggle_action_set_active(GTK_TOGGLE_ACTION(toggleAction.get()), TRUE);
    703703        webkit_context_menu_append(contextMenu, webkit_context_menu_item_new(toggleAction.get()));
    704704        webkit_context_menu_append(contextMenu, webkit_context_menu_item_new_separator());
    705         GRefPtr<GAction> gAction = adoptGRef(G_ACTION(g_simple_action_new("WebKitGTK+CustomGAction", nullptr)));
     705        GRefPtr<GAction> gAction = adoptGRef(G_ACTION(g_simple_action_new("WebKitGTKCustomGAction", nullptr)));
    706706        g_simple_action_set_enabled(G_SIMPLE_ACTION(gAction.get()), FALSE);
    707707        webkit_context_menu_insert(contextMenu, webkit_context_menu_item_new_from_gaction(gAction.get(), "Custom _GAction", nullptr), -1);
    708         GRefPtr<GAction> toggleGAction = adoptGRef(G_ACTION(g_simple_action_new_stateful("WebKitGTK+CustomToggleGAction", nullptr, g_variant_new_boolean(TRUE))));
     708        GRefPtr<GAction> toggleGAction = adoptGRef(G_ACTION(g_simple_action_new_stateful("WebKitGTKCustomToggleGAction", nullptr, g_variant_new_boolean(TRUE))));
    709709        webkit_context_menu_append(contextMenu, webkit_context_menu_item_new_from_gaction(toggleGAction.get(), "Custom T_oggle GAction", nullptr));
    710710        webkit_context_menu_append(contextMenu, webkit_context_menu_item_new_separator());
     
    757757    test->showInWindowAndWaitUntilMapped();
    758758
    759     test->loadHtml("<html><body>WebKitGTK+ Context menu tests</body></html>", "file:///");
     759    test->loadHtml("<html><body>WebKitGTK Context menu tests</body></html>", "file:///");
    760760    test->waitUntilLoadFinished();
    761761
     
    811811    test->showInWindowAndWaitUntilMapped();
    812812
    813     test->loadHtml("<html><body>WebKitGTK+ Context menu tests</body></html>", "file:///");
     813    test->loadHtml("<html><body>WebKitGTK Context menu tests</body></html>", "file:///");
    814814    test->waitUntilLoadFinished();
    815815
     
    864864    test->showInWindowAndWaitUntilMapped();
    865865
    866     test->loadHtml("<html><body>WebKitGTK+ Context menu tests</body></html>", "file:///");
     866    test->loadHtml("<html><body>WebKitGTK Context menu tests</body></html>", "file:///");
    867867    test->waitUntilLoadFinished();
    868868
     
    905905    test->showInWindowAndWaitUntilMapped();
    906906
    907     test->loadHtml("<html><body>WebKitGTK+ Context menu tests</body></html>", "file:///");
     907    test->loadHtml("<html><body>WebKitGTK Context menu tests</body></html>", "file:///");
    908908    test->waitUntilLoadFinished();
    909909
     
    954954{
    955955    test->showInWindowAndWaitUntilMapped();
    956     test->loadHtml("<html><body>WebKitGTK+ Context menu tests<br>"
    957         "<a style='position:absolute; left:1; top:10' href='http://www.webkitgtk.org'>WebKitGTK+ Website</a></body></html>",
     956    test->loadHtml("<html><body>WebKitGTK Context menu tests<br>"
     957        "<a style='position:absolute; left:1; top:10' href='http://www.webkitgtk.org'>WebKitGTK Website</a></body></html>",
    958958        "ContextMenuTestDefault");
    959959    test->waitUntilLoadFinished();
     
    10441044{
    10451045    test->showInWindowAndWaitUntilMapped();
    1046     test->loadHtml("<html><body><p style='position:absolute; left:1; top:1'>WebKitGTK+ Context menu tests</p><br>"
    1047         "<a style='position:absolute; left:1; top:100' href='http://www.webkitgtk.org'>WebKitGTK+ Website</a></body></html>",
     1046    test->loadHtml("<html><body><p style='position:absolute; left:1; top:1'>WebKitGTK Context menu tests</p><br>"
     1047        "<a style='position:absolute; left:1; top:100' href='http://www.webkitgtk.org'>WebKitGTK Website</a></body></html>",
    10481048        "ContextMenuTestNode");
    10491049    test->waitUntilLoadFinished();
     
    10521052    g_assert_cmpstr(test->m_node.name.data(), ==, "HTML");
    10531053    g_assert_cmpuint(test->m_node.type, ==, ContextMenuWebExtensionNodeTest::Node::NodeElement);
    1054     g_assert_cmpstr(test->m_node.contents.data(), ==, "WebKitGTK+ Context menu testsWebKitGTK+ Website");
     1054    g_assert_cmpstr(test->m_node.contents.data(), ==, "WebKitGTK Context menu testsWebKitGTK Website");
    10551055    g_assert_cmpstr(test->m_node.parentName.data(), ==, "#document");
    10561056
     
    10581058    g_assert_cmpstr(test->m_node.name.data(), ==, "#text");
    10591059    g_assert_cmpuint(test->m_node.type, ==, ContextMenuWebExtensionNodeTest::Node::NodeText);
    1060     g_assert_cmpstr(test->m_node.contents.data(), ==, "WebKitGTK+ Context menu tests");
     1060    g_assert_cmpstr(test->m_node.contents.data(), ==, "WebKitGTK Context menu tests");
    10611061    g_assert_cmpstr(test->m_node.parentName.data(), ==, "P");
    10621062
     
    10651065    g_assert_cmpstr(test->m_node.name.data(), ==, "#text");
    10661066    g_assert_cmpuint(test->m_node.type, ==, ContextMenuWebExtensionNodeTest::Node::NodeText);
    1067     g_assert_cmpstr(test->m_node.contents.data(), ==, "WebKitGTK+ Website");
     1067    g_assert_cmpstr(test->m_node.contents.data(), ==, "WebKitGTK Website");
    10681068    g_assert_cmpstr(test->m_node.parentName.data(), ==, "A");
    10691069}
  • trunk/Tools/TestWebKitAPI/Tests/WebKitGtk/TestInspector.cpp

    r239772 r246790  
    170170    test->showInWindowAndWaitUntilMapped(GTK_WINDOW_TOPLEVEL);
    171171    test->resizeView(200, 200);
    172     test->loadHtml("<html><body><p>WebKitGTK+ Inspector test</p></body></html>", 0);
     172    test->loadHtml("<html><body><p>WebKitGTK Inspector test</p></body></html>", 0);
    173173    test->waitUntilLoadFinished();
    174174
     
    301301    test->showInWindowAndWaitUntilMapped(GTK_WINDOW_TOPLEVEL);
    302302    test->resizeView(200, 200);
    303     test->loadHtml("<html><body><p>WebKitGTK+ Inspector test</p></body></html>", 0);
     303    test->loadHtml("<html><body><p>WebKitGTK Inspector test</p></body></html>", 0);
    304304    test->waitUntilLoadFinished();
    305305
     
    343343    test->showInWindowAndWaitUntilMapped(GTK_WINDOW_TOPLEVEL);
    344344    test->resizeView(200, 200);
    345     test->loadHtml("<html><body><p>WebKitGTK+ Inspector test</p></body></html>", 0);
     345    test->loadHtml("<html><body><p>WebKitGTK Inspector test</p></body></html>", 0);
    346346    test->waitUntilLoadFinished();
    347347
  • trunk/Tools/TestWebKitAPI/Tests/WebKitGtk/TestPrinting.cpp

    r239772 r246790  
    6666{
    6767    g_signal_connect(test->m_webView, "print", G_CALLBACK(webViewPrintCallback), test);
    68     test->loadHtml("<html><body onLoad=\"print();\">WebKitGTK+ printing test</body></html>", 0);
     68    test->loadHtml("<html><body onLoad=\"print();\">WebKitGTK printing test</body></html>", 0);
    6969    g_main_loop_run(test->m_mainLoop);
    7070}
     
    124124static void testPrintOperationPrint(PrintTest* test, gconstpointer)
    125125{
    126     test->loadHtml("<html><body>WebKitGTK+ printing test</body></html>", 0);
     126    test->loadHtml("<html><body>WebKitGTK printing test</body></html>", 0);
    127127    test->waitUntilLoadFinished();
    128128
     
    157157static void testPrintOperationErrors(PrintTest* test, gconstpointer)
    158158{
    159     test->loadHtml("<html><body>WebKitGTK+ printing errors test</body></html>", 0);
     159    test->loadHtml("<html><body>WebKitGTK printing errors test</body></html>", 0);
    160160    test->waitUntilLoadFinished();
    161161
  • trunk/Tools/gtk/install-dependencies

    r246632 r246790  
    8686
    8787function installDependenciesWithApt {
    88     # These are dependencies necessary for building WebKitGTK+.
     88    # These are dependencies necessary for building WebKitGTK.
    8989    packages=" \
    9090        autoconf \
     
    239239
    240240function installDependenciesWithPacman {
    241     # These are dependencies necessary for building WebKitGTK+.
     241    # These are dependencies necessary for building WebKitGTK.
    242242    packages=" \
    243243        alsa-lib \
     
    406406    https://wiki.archlinux.org/index.php/Python#Dealing_with_version_problem_in_build_scripts
    407407
    408 Alternatively, you may use a Python 2.x virtualenv while hacking on WebKitGTK+:
     408Alternatively, you may use a Python 2.x virtualenv while hacking on WebKitGTK:
    409409
    410410    https://wiki.archlinux.org/index.php/Python/Virtual_environment
     
    414414
    415415function installDependenciesWithDnf {
    416     # These are dependencies necessary for building WebKitGTK+.
     416    # These are dependencies necessary for building WebKitGTK.
    417417    packages=" \
    418418        atk-devel \
  • trunk/Tools/gtk/jhbuild.modules

    r246517 r246790  
    121121              ARM traditional instruction set. It causes a build failure on Raspbian.
    122122              This workaround can be removed once we raise the minimum GCC version
    123               for WebKitGTK+ above 4.9 -->
     123              for WebKitGTK above 4.9 -->
    124124  <autotools id="pixman" autogen-sh="configure"
    125125             autogenargs="--enable-gtk=no --disable-arm-iwmmxt">
  • trunk/Tools/gtkdoc/generate-gtkdoc

    r242637 r246790  
    240240
    241241    parser.add_argument('--gtk', action='store_true',
    242                         help='Build documentation for WebKitGTK+')
     242                        help='Build documentation for WebKitGTK')
    243243    parser.add_argument('--wpe', action='store_true',
    244244                        help='Build documentation for WPE')
  • trunk/Tools/wpe/install-dependencies

    r244214 r246790  
    254254    https://wiki.archlinux.org/index.php/Python#Dealing_with_version_problem_in_build_scripts
    255255
    256 Alternatively, you may use a Python 2.x virtualenv while hacking on WebKitGTK+:
     256Alternatively, you may use a Python 2.x virtualenv while hacking on WPE:
    257257
    258258    https://wiki.archlinux.org/index.php/Python/Virtual_environment
Note: See TracChangeset for help on using the changeset viewer.