Changeset 249293 in webkit


Ignore:
Timestamp:
Aug 29, 2019 2:51:22 PM (5 years ago)
Author:
rniwa@webkit.org
Message:

Flaky Test: svg/custom/tabindex-order.html
https://bugs.webkit.org/show_bug.cgi?id=201294

Reviewed by Chris Dumez.

Make the backward sequential navigation case more robust against platform differences.

  • svg/custom/tabindex-order.html:
Location:
trunk/LayoutTests
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r249287 r249293  
     12019-08-29  Ryosuke Niwa  <rniwa@webkit.org>
     2
     3        Flaky Test: svg/custom/tabindex-order.html
     4        https://bugs.webkit.org/show_bug.cgi?id=201294
     5
     6        Reviewed by Chris Dumez.
     7
     8        Make the backward sequential navigation case more robust against platform differences.
     9
     10        * svg/custom/tabindex-order.html:
     11
    1122019-08-29  Youenn Fablet  <youenn@apple.com>
    213
  • trunk/LayoutTests/svg/custom/tabindex-order.html

    r249237 r249293  
    4646
    4747            log('Tabbing forward....\n');
    48             let tabCount = 0;
    4948            for (var i = 0; i < rects.length; ++i) {
    5049                if (i > 1 && document.activeElement.id == 'a')
    5150                    break;
    5251                dispatchTabPress(document, false);
    53                 tabCount++;
    5452            }
    5553
     
    5755
    5856            log('\nTabbing backward....\n');
    59             previousActiveElement = null;
    60             for (var i = 0; i < tabCount; ++i)
     57            for (var i = 0; i < rects.length; ++i) {
     58                if (i > 1 && document.activeElement.id == 'k')
     59                    break;
    6160                dispatchTabPress(document, true);
     61            }
    6262
    6363            log('\nTest finished\n');
Note: See TracChangeset for help on using the changeset viewer.