Changeset 266975 in webkit


Ignore:
Timestamp:
Sep 12, 2020 12:09:10 AM (4 years ago)
Author:
Carlos Garcia Campos
Message:

[GTK] REGRESSION(r266815): Several GTK API tests are timing out
https://bugs.webkit.org/show_bug.cgi?id=216361

Reviewed by Adrian Perez de Castro.

Source/WebInspectorUI:

Add missing trailing ';'.

  • UserInterface/Views/DOMNodeDetailsSidebarPanel.js:

Tools:

Unskip tests that are now passing.

  • TestWebKitAPI/glib/TestExpectations.json:
Location:
trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebInspectorUI/ChangeLog

    r266885 r266975  
     12020-09-12  Carlos Garcia Campos  <cgarcia@igalia.com>
     2
     3        [GTK] REGRESSION(r266815): Several GTK API tests are timing out
     4        https://bugs.webkit.org/show_bug.cgi?id=216361
     5
     6        Reviewed by Adrian Perez de Castro.
     7
     8        Add missing trailing ';'.
     9
     10        * UserInterface/Views/DOMNodeDetailsSidebarPanel.js:
     11
    1122020-09-10  Devin Rousso  <drousso@apple.com>
    213
  • trunk/Source/WebInspectorUI/UserInterface/Views/DOMNodeDetailsSidebarPanel.js

    r266815 r266975  
    355355
    356356            const defaultCollapsedSettingValue = true;
    357             let identifier = `${options.identifier ?? title}-event-listener-section`
     357            let identifier = `${options.identifier ?? title}-event-listener-section`;
    358358            let section = new WI.DetailsSection(identifier, title, groups, optionsElement, defaultCollapsedSettingValue);
    359359            section.element.classList.add("event-listener-section");
  • trunk/Tools/ChangeLog

    r266974 r266975  
     12020-09-12  Carlos Garcia Campos  <cgarcia@igalia.com>
     2
     3        [GTK] REGRESSION(r266815): Several GTK API tests are timing out
     4        https://bugs.webkit.org/show_bug.cgi?id=216361
     5
     6        Reviewed by Adrian Perez de Castro.
     7
     8        Unskip tests that are now passing.
     9
     10        * TestWebKitAPI/glib/TestExpectations.json:
     11
    1122020-09-12  Carlos Garcia Campos  <cgarcia@igalia.com>
    213
  • trunk/Tools/TestWebKitAPI/glib/TestExpectations.json

    r266823 r266975  
    100100    "TestInspectorServer": {
    101101        "expected": {"all": {"slow": true}}
    102     },
    103     "TestInspector": {
    104         "subtests": {
    105             "/webkit/WebKitWebInspector/custom-container-destroyed": {
    106               "expected": {"gtk": {"status": ["TIMEOUT"], "bug": "webkit.org/b/216361"}}
    107             },
    108             "/webkit/WebKitWebInspector/manual-attach-detach": {
    109               "expected": {"gtk": {"status": ["TIMEOUT"], "bug": "webkit.org/b/216361"}}
    110             },
    111             "/webkit/WebKitWebInspector/default": {
    112               "expected": {"gtk": {"status": ["TIMEOUT"], "bug": "webkit.org/b/216361"}}
    113             }
    114         }
    115102    },
    116103    "TestWebKitFaviconDatabase": {
Note: See TracChangeset for help on using the changeset viewer.