Changeset 184060 in webkit


Ignore:
Timestamp:
May 10, 2015 5:57:01 PM (9 years ago)
Author:
Martin Robinson
Message:

[GTK] fast/events/page-visibility-transition-test.html is timing out
https://bugs.webkit.org/show_bug.cgi?id=114789

Reviewed by Darin Adler.

Tools:

  • WebKitTestRunner/gtk/TestControllerGtk.cpp:

(WTR::TestController::setHidden): Map and unmap the WebView when the harness
requests visibility changes.

LayoutTests:

  • platform/gtk/TestExpectations: Unskip failing tests.
Location:
trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r184046 r184060  
     12015-05-10  Martin Robinson  <mrobinson@igalia.com>
     2
     3        [GTK] fast/events/page-visibility-transition-test.html is timing out
     4        https://bugs.webkit.org/show_bug.cgi?id=114789
     5
     6        Reviewed by Darin Adler.
     7
     8        * platform/gtk/TestExpectations: Unskip failing tests.
     9
    1102015-05-10  Chris Fleizach  <cfleizach@apple.com>
    211
  • trunk/LayoutTests/platform/gtk/TestExpectations

    r184031 r184060  
    22712271webkit.org/b/144765 fast/events/touch/touch-inside-iframe.html [ Timeout ]
    22722272
    2273 # Need support for adjusting page visibility in the test harness.
    2274 webkit.org/b/114789 fast/events/page-visibility-iframe-delete-test.html [ Timeout ]
    2275 webkit.org/b/114789 fast/events/page-visibility-iframe-move-test.html [ Timeout ]
    2276 webkit.org/b/114789 fast/events/page-visibility-iframe-propagation-test.html [ Timeout ]
    2277 webkit.org/b/114789 fast/events/page-visibility-transition-test.html [ Timeout ]
    2278 
    22792273webkit.org/b/144763 fast/events/scroll-in-scaled-page-with-overflow-hidden.html
    22802274
  • trunk/Tools/ChangeLog

    r184057 r184060  
     12015-05-10  Martin Robinson  <mrobinson@igalia.com>
     2
     3        [GTK] fast/events/page-visibility-transition-test.html is timing out
     4        https://bugs.webkit.org/show_bug.cgi?id=114789
     5
     6        Reviewed by Darin Adler.
     7
     8        * WebKitTestRunner/gtk/TestControllerGtk.cpp:
     9        (WTR::TestController::setHidden): Map and unmap the WebView when the harness
     10        requests visibility changes.
     11
    1122015-05-10  Csaba Osztrogonác  <ossy@webkit.org>
    213
  • trunk/Tools/WebKitTestRunner/gtk/TestControllerGtk.cpp

    r184015 r184060  
    9696}
    9797
    98 void TestController::setHidden(bool)
     98void TestController::setHidden(bool hidden)
    9999{
    100     // FIXME: Need to implement this to test visibilityState.
     100    if (!m_mainWebView)
     101        return;
     102    if (hidden)
     103        gtk_widget_unmap(GTK_WIDGET(m_mainWebView->platformView()));
     104    else
     105        gtk_widget_map(GTK_WIDGET(m_mainWebView->platformView()));
    101106}
    102107
Note: See TracChangeset for help on using the changeset viewer.