Title: [147534] trunk/LayoutTests
Revision
147534
Author
[email protected]
Date
2013-04-03 02:49:14 -0700 (Wed, 03 Apr 2013)

Log Message

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

Patch by Krzysztof Czech <[email protected]> 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:

Modified Paths

Diff

Modified: trunk/LayoutTests/ChangeLog (147533 => 147534)


--- trunk/LayoutTests/ChangeLog	2013-04-03 09:48:04 UTC (rev 147533)
+++ trunk/LayoutTests/ChangeLog	2013-04-03 09:49:14 UTC (rev 147534)
@@ -1,3 +1,16 @@
+2013-04-03  Krzysztof Czech  <[email protected]>
+
+        [EFL] accessibility/ignore-spacer-elements.html is failing
+        https://bugs.webkit.org/show_bug.cgi?id=112001
+
+        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:
+
 2013-04-03  Takashi Sakamoto  <[email protected]>
 
         With borders of differing alpha, the corners become squared off

Modified: trunk/LayoutTests/accessibility/ignore-spacer-elements.html (147533 => 147534)


--- trunk/LayoutTests/accessibility/ignore-spacer-elements.html	2013-04-03 09:48:04 UTC (rev 147533)
+++ trunk/LayoutTests/accessibility/ignore-spacer-elements.html	2013-04-03 09:49:14 UTC (rev 147534)
@@ -24,8 +24,8 @@
             body.focus();
             var container = accessibilityController.focusedElement.childAtIndex(0);
 
-            // The Gtk port ATs expect the bold inline text to not have accessible objects.
-            var expectedCount = (testRunner.platformName == "gtk") ? 2 : 4;
+            // The Gtk and EFL ports ATs expect the bold inline text to not have accessible objects.
+            var expectedCount = (testRunner.platformName == "gtk" || testRunner.platformName == "efl") ? 2 : 4;
             if (container.childrenCount == expectedCount) {
                 result.innerText += "Test passed\n";
             }

Modified: trunk/LayoutTests/platform/efl-wk1/TestExpectations (147533 => 147534)


--- trunk/LayoutTests/platform/efl-wk1/TestExpectations	2013-04-03 09:48:04 UTC (rev 147533)
+++ trunk/LayoutTests/platform/efl-wk1/TestExpectations	2013-04-03 09:49:14 UTC (rev 147534)
@@ -119,7 +119,6 @@
 webkit.org/b/111996 accessibility/canvas-fallback-content-2.html [ Failure ]
 webkit.org/b/111999 accessibility/disabled-controls-not-focusable.html [ Failure ]
 webkit.org/b/112000 accessibility/heading-level.html [ Failure ]
-webkit.org/b/112001 accessibility/ignore-spacer-elements.html [ Failure ]
 webkit.org/b/112002 accessibility/inline-continuations.html [ Failure ]
 webkit.org/b/112003 accessibility/loading-iframe-sends-notification.html [ Failure ]
 webkit.org/b/112023 accessibility/loading-iframe-updates-axtree.html [ Failure ]

Modified: trunk/LayoutTests/platform/efl-wk2/TestExpectations (147533 => 147534)


--- trunk/LayoutTests/platform/efl-wk2/TestExpectations	2013-04-03 09:48:04 UTC (rev 147533)
+++ trunk/LayoutTests/platform/efl-wk2/TestExpectations	2013-04-03 09:49:14 UTC (rev 147534)
@@ -272,7 +272,6 @@
 webkit.org/b/111996 accessibility/canvas-fallback-content-2.html [ Failure ]
 webkit.org/b/111999 accessibility/disabled-controls-not-focusable.html [ Failure ]
 webkit.org/b/112000 accessibility/heading-level.html [ Failure ]
-webkit.org/b/112001 accessibility/ignore-spacer-elements.html [ Failure ]
 webkit.org/b/112002 accessibility/inline-continuations.html [ Failure ]
 webkit.org/b/112029 accessibility/label-for-control-hittest.html [ Failure ]
 webkit.org/b/112030 accessibility/language-attribute.html [ Failure ]
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to