[Webkit-unassigned] [Bug 58930] Accessibility tree should not contain duplicate child nodes.

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Tue Apr 19 15:07:14 PDT 2011


https://bugs.webkit.org/show_bug.cgi?id=58930





--- Comment #1 from chris.guillory at google.com  2011-04-19 15:07:15 PST ---
(From update of attachment 90262)
>Index: LayoutTests/accessibility/duplicate-child-nodes.html
>===================================================================
>--- LayoutTests/accessibility/duplicate-child-nodes.html	(revision 0)
>+++ LayoutTests/accessibility/duplicate-child-nodes.html	(revision 0)
>@@ -0,0 +1,32 @@
>+<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
>+<html>
>+<head>
>+<link rel="stylesheet" href="../fast/js/resources/js-test-style.css">
>+<script>
>+    var successfullyParsed = false;
>+</script>
>+<script src="../fast/js/resources/js-test-pre.js"></script>
>+</head>
>+<body>
>+
>+<em><code ><h4 ></em>
>+
>+<p id="description"></p>
>+<div id="console"></div>
>+
>+<script>
>+    description("Child nodes should not be duplicated in the accessibility tree.");
>+
>+    if (window.accessibilityController) {
>+        document.body.focus();
>+        var webArea = accessibilityController.focusedElement;
>+        if (webArea.childrenCount > 1)
>+            shouldBe("webArea.childAtIndex(0).isEqual(webArea.childAtIndex(1))", "false");
>+    }
>+
>+    successfullyParsed = true;
>+</script>
>+
>+<script src="../fast/js/resources/js-test-post.js"></script>
>+</body>
>+</html>

-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.


More information about the webkit-unassigned mailing list