[SCM] WebKit Debian packaging branch, debian/experimental, updated. upstream/1.3.3-9427-gc2be6fc

cfleizach at apple.com cfleizach at apple.com
Wed Dec 22 14:36:02 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit 375bda7e332ab0df0ef848d21caaac52b902ec78
Author: cfleizach at apple.com <cfleizach at apple.com@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Wed Oct 13 23:07:21 2010 +0000

    No review. Fix layout test, now that behavior is correct.
    
    AX: accessibilityIsIgnored not respected on ARIA tables
    https://bugs.webkit.org/show_bug.cgi?id=47564
    
    * accessibility/aria-hidden-with-elements-expected.txt:
    * accessibility/aria-hidden-with-elements.html:
    
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@69709 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/LayoutTests/ChangeLog b/LayoutTests/ChangeLog
index a827afa..3756175 100644
--- a/LayoutTests/ChangeLog
+++ b/LayoutTests/ChangeLog
@@ -1,5 +1,15 @@
 2010-10-13  Chris Fleizach  <cfleizach at apple.com>
 
+        No review. Fix layout test, now that behavior is correct.
+
+        AX: accessibilityIsIgnored not respected on ARIA tables
+        https://bugs.webkit.org/show_bug.cgi?id=47564
+
+        * accessibility/aria-hidden-with-elements-expected.txt:
+        * accessibility/aria-hidden-with-elements.html:
+
+2010-10-13  Chris Fleizach  <cfleizach at apple.com>
+
         Reviewed by Beth Dakin.
 
         AX: accessibilityIsIgnored not respected on ARIA tables
diff --git a/LayoutTests/accessibility/aria-hidden-with-elements-expected.txt b/LayoutTests/accessibility/aria-hidden-with-elements-expected.txt
index 7bfa004..e2920ea 100644
--- a/LayoutTests/accessibility/aria-hidden-with-elements-expected.txt
+++ b/LayoutTests/accessibility/aria-hidden-with-elements-expected.txt
@@ -12,7 +12,6 @@ On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE
 
 
 PASS child.childrenCount is 0
-PASS child.childrenCount is 0
 PASS child.role is 'AXRole: AXHeading'
 PASS successfullyParsed is true
 
diff --git a/LayoutTests/accessibility/aria-hidden-with-elements.html b/LayoutTests/accessibility/aria-hidden-with-elements.html
index 7e2624e..e244b97 100644
--- a/LayoutTests/accessibility/aria-hidden-with-elements.html
+++ b/LayoutTests/accessibility/aria-hidden-with-elements.html
@@ -44,12 +44,8 @@ var successfullyParsed = false;
        var child = root.childAtIndex(0).childAtIndex(0);
        shouldBe("child.childrenCount", "0");
 
-       // second child is an AXGroup that has no children
+       // The second child we ask for from the web area should be the heading, and we should have skipped over everything else.
        child = root.childAtIndex(0).childAtIndex(1);
-       shouldBe("child.childrenCount", "0");
-
-       // the next child we ask for from the web area should be the heading, and we should have skipped over everything else.
-       child = root.childAtIndex(0).childAtIndex(2);
        shouldBe("child.role", "'AXRole: AXHeading'");
     }
 

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list