Changeset 129110 in webkit


Ignore:
Timestamp:
Sep 20, 2012 3:16:35 AM (12 years ago)
Author:
commit-queue@webkit.org
Message:

[EFL][DRT]DumpRenderTree needs to reset focus state when test starts.
https://bugs.webkit.org/show_bug.cgi?id=97087

Patch by Michał Pakuła vel Rutka <Michał Pakuła vel Rutka> on 2012-09-20
Reviewed by Gyuyoung Kim.

Tools:

Add focusing a main frame on settings reset.
After editing/undo/undo-iframe-location-change was executed a frame
was left in unfocused state. This caused flakiness in two tests results.

  • DumpRenderTree/efl/DumpRenderTreeChrome.cpp:

(DumpRenderTreeChrome::resetDefaultsToConsistentValues):

LayoutTests:

Remove two flaky tests from TestExpectations as they pass after setting focus
on settings reset.

  • platform/efl-wk1/TestExpectations:
Location:
trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r129109 r129110  
     12012-09-20  Michał Pakuła vel Rutka  <m.pakula@samsung.com>
     2
     3        [EFL][DRT]DumpRenderTree needs to reset focus state when test starts.
     4        https://bugs.webkit.org/show_bug.cgi?id=97087
     5
     6        Reviewed by Gyuyoung Kim.
     7
     8        Remove two flaky tests from TestExpectations as they pass after setting focus
     9        on settings reset.
     10
     11        * platform/efl-wk1/TestExpectations:
     12
    1132012-09-20  Mikhail Pozdnyakov  <mikhail.pozdnyakov@intel.com>
    214
  • trunk/LayoutTests/platform/efl-wk1/TestExpectations

    r129060 r129110  
    3939
    4040# Test passes, but editing delegates does not match expected ones
    41 Bug(EFL) editing/undo/undo-indent.html [ Failure Pass ]
    42 Bug(EFL) editing/undo/undo-misspellings.html [ Failure Pass ]
    43 
    4441webkit.org/b/96641 media/video-seek-past-end-playing.html [ Failure Pass ]
    4542webkit.org/b/96642 loader/go-back-to-different-window-size.html [ Failure Pass ]
  • trunk/Tools/ChangeLog

    r129102 r129110  
     12012-09-20  Michał Pakuła vel Rutka  <m.pakula@samsung.com>
     2
     3        [EFL][DRT]DumpRenderTree needs to reset focus state when test starts.
     4        https://bugs.webkit.org/show_bug.cgi?id=97087
     5
     6        Reviewed by Gyuyoung Kim.
     7
     8        Add focusing a main frame on settings reset.
     9        After editing/undo/undo-iframe-location-change was executed a frame
     10        was left in unfocused state. This caused flakiness in two tests results.
     11
     12        * DumpRenderTree/efl/DumpRenderTreeChrome.cpp:
     13        (DumpRenderTreeChrome::resetDefaultsToConsistentValues):
     14
    1152012-09-20  Allan Sandfeld Jensen  <allan.jensen@digia.com>
    216
  • trunk/Tools/DumpRenderTree/efl/DumpRenderTreeChrome.cpp

    r128993 r129110  
    293293    ewk_history_clear(ewk_view_history_get(mainView()));
    294294
     295    ewk_frame_feed_focus_in(mainFrame());
     296
    295297    ewk_cookies_clear();
    296298    ewk_cookies_policy_set(EWK_COOKIE_JAR_ACCEPT_NO_THIRD_PARTY);
Note: See TracChangeset for help on using the changeset viewer.