[SCM] WebKit Debian packaging branch, webkit-1.1, updated. upstream/1.1.22-985-g3c00f00
cfleizach at apple.com
cfleizach at apple.com
Wed Mar 17 17:56:09 UTC 2010
The following commit has been merged in the webkit-1.1 branch:
commit b306e88fcb049648f33f6315cdd7df3c7998307f
Author: cfleizach at apple.com <cfleizach at apple.com@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date: Mon Feb 22 21:07:51 2010 +0000
Bug 35186 - AX: AXFocused is not writable like it should be on nodes
https://bugs.webkit.org/show_bug.cgi?id=35186
Fixing layout test failure.
git-svn-id: http://svn.webkit.org/repository/webkit/trunk@55102 268f45cc-cd09-0410-ab3c-d52691b4dbfc
diff --git a/LayoutTests/ChangeLog b/LayoutTests/ChangeLog
index 87acfe3..05309db 100644
--- a/LayoutTests/ChangeLog
+++ b/LayoutTests/ChangeLog
@@ -1,3 +1,13 @@
+2010-02-22 Chris Fleizach <cfleizach at apple.com>
+
+ Fixing Layout test failure. Not reviewed.
+
+ AX: AXFocused is not writable like it should be on nodes
+ https://bugs.webkit.org/show_bug.cgi?id=35186
+
+ * platform/mac/accessibility/element-focus-expected.txt:
+ * platform/mac/accessibility/element-focus.html:
+
2010-02-22 Enrica Casucci <enrica at apple.com>
Reviewed by Dan Bernstein.
diff --git a/LayoutTests/platform/mac/accessibility/element-focus-expected.txt b/LayoutTests/platform/mac/accessibility/element-focus-expected.txt
index ab201bc..0fc4cb6 100644
--- a/LayoutTests/platform/mac/accessibility/element-focus-expected.txt
+++ b/LayoutTests/platform/mac/accessibility/element-focus-expected.txt
@@ -10,8 +10,8 @@ PASS body.childAtIndex(0).childAtIndex(0).role is 'AXRole: AXLink'
PASS body.childAtIndex(0).childAtIndex(0).isAttributeSettable('AXFocused') is true
PASS body.childAtIndex(1).role is 'AXRole: AXStaticText'
PASS body.childAtIndex(1).isAttributeSettable('AXFocused') is true
-PASS body.childAtIndex(2).childAtIndex(0).role is 'AXRole: AXGroup'
-PASS body.childAtIndex(2).childAtIndex(0).isAttributeSettable('AXFocused') is true
+PASS body.childAtIndex(2).role is 'AXRole: AXGroup'
+PASS body.childAtIndex(2).isAttributeSettable('AXFocused') is true
PASS successfullyParsed is true
TEST COMPLETE
diff --git a/LayoutTests/platform/mac/accessibility/element-focus.html b/LayoutTests/platform/mac/accessibility/element-focus.html
index 2d6b33f..decc922 100644
--- a/LayoutTests/platform/mac/accessibility/element-focus.html
+++ b/LayoutTests/platform/mac/accessibility/element-focus.html
@@ -13,10 +13,7 @@ var successfullyParsed = false;
<div role="text" aria-label="text" tabindex=0>text</div>
-<div role="list">
- <div role="listitem" tabindex="0">foo</div>
-</div>
-
+<div role="alertdialog" tabindex="0">foo</div>
<p id="description"></p>
<div id="console"></div>
@@ -36,8 +33,8 @@ var successfullyParsed = false;
shouldBe("body.childAtIndex(1).role", "'AXRole: AXStaticText'");
shouldBe("body.childAtIndex(1).isAttributeSettable('AXFocused')", "true");
- shouldBe("body.childAtIndex(2).childAtIndex(0).role", "'AXRole: AXGroup'");
- shouldBe("body.childAtIndex(2).childAtIndex(0).isAttributeSettable('AXFocused')", "true");
+ shouldBe("body.childAtIndex(2).role", "'AXRole: AXGroup'");
+ shouldBe("body.childAtIndex(2).isAttributeSettable('AXFocused')", "true");
}
successfullyParsed = true;
--
WebKit Debian packaging
More information about the Pkg-webkit-commits
mailing list