Changeset 147534 in webkit


Ignore:
Timestamp:
Apr 3, 2013 2:49:14 AM (11 years ago)
Author:
commit-queue@webkit.org
Message:

[EFL] accessibility/ignore-spacer-elements.html is failing
https://bugs.webkit.org/show_bug.cgi?id=112001

Patch by Krzysztof Czech <k.czech@samsung.com> on 2013-04-03
Reviewed by Gyuyoung Kim.

Fixed failing test. The reason of failure is different expectation of childrenCount.

  • accessibility/ignore-spacer-elements.html:
  • platform/efl-wk1/TestExpectations:
  • platform/efl-wk2/TestExpectations:
Location:
trunk/LayoutTests
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r147533 r147534  
     12013-04-03  Krzysztof Czech  <k.czech@samsung.com>
     2
     3        [EFL] accessibility/ignore-spacer-elements.html is failing
     4        https://bugs.webkit.org/show_bug.cgi?id=112001
     5
     6        Reviewed by Gyuyoung Kim.
     7
     8        Fixed failing test. The reason of failure is different expectation of childrenCount.
     9
     10        * accessibility/ignore-spacer-elements.html:
     11        * platform/efl-wk1/TestExpectations:
     12        * platform/efl-wk2/TestExpectations:
     13
    1142013-04-03  Takashi Sakamoto  <tasak@google.com>
    215
  • trunk/LayoutTests/accessibility/ignore-spacer-elements.html

    r131599 r147534  
    2525            var container = accessibilityController.focusedElement.childAtIndex(0);
    2626
    27             // The Gtk port ATs expect the bold inline text to not have accessible objects.
    28             var expectedCount = (testRunner.platformName == "gtk") ? 2 : 4;
     27            // The Gtk and EFL ports ATs expect the bold inline text to not have accessible objects.
     28            var expectedCount = (testRunner.platformName == "gtk" || testRunner.platformName == "efl") ? 2 : 4;
    2929            if (container.childrenCount == expectedCount) {
    3030                result.innerText += "Test passed\n";
  • trunk/LayoutTests/platform/efl-wk1/TestExpectations

    r147200 r147534  
    120120webkit.org/b/111999 accessibility/disabled-controls-not-focusable.html [ Failure ]
    121121webkit.org/b/112000 accessibility/heading-level.html [ Failure ]
    122 webkit.org/b/112001 accessibility/ignore-spacer-elements.html [ Failure ]
    123122webkit.org/b/112002 accessibility/inline-continuations.html [ Failure ]
    124123webkit.org/b/112003 accessibility/loading-iframe-sends-notification.html [ Failure ]
  • trunk/LayoutTests/platform/efl-wk2/TestExpectations

    r147429 r147534  
    273273webkit.org/b/111999 accessibility/disabled-controls-not-focusable.html [ Failure ]
    274274webkit.org/b/112000 accessibility/heading-level.html [ Failure ]
    275 webkit.org/b/112001 accessibility/ignore-spacer-elements.html [ Failure ]
    276275webkit.org/b/112002 accessibility/inline-continuations.html [ Failure ]
    277276webkit.org/b/112029 accessibility/label-for-control-hittest.html [ Failure ]
Note: See TracChangeset for help on using the changeset viewer.