| Index: LayoutTests/accessibility/inline-text-changes.html
|
| diff --git a/LayoutTests/accessibility/inline-text-changes.html b/LayoutTests/accessibility/inline-text-changes.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..d43616ab515ca4820c34c877e82646bd1b6e6232
|
| --- /dev/null
|
| +++ b/LayoutTests/accessibility/inline-text-changes.html
|
| @@ -0,0 +1,46 @@
|
| +<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
|
| +<html>
|
| +<head>
|
| +<script src="../fast/js/resources/js-test-pre.js"></script>
|
| +</head>
|
| +<body>
|
| +
|
| +<p id="p" style="width: 10em;">
|
| + This paragraph contains two lines of text.
|
| +</p>
|
| +
|
| +<p id="description"></p>
|
| +<pre id="tree"></pre>
|
| +<div id="console"></div>
|
| +
|
| +<script>
|
| +
|
| + description("Tests that accessible inline text boxes update immediately when a static text element changes.");
|
| +
|
| + if (window.accessibilityController) {
|
| + window.axParagraph = accessibilityController.accessibleElementById('p');
|
| + window.axStaticText = axParagraph.childAtIndex(0);
|
| + shouldBe("axStaticText.childrenCount", "2");
|
| +
|
| + window.axInlineBefore0 = axStaticText.childAtIndex(0);
|
| + shouldBe("axInlineBefore0.stringValue", "'AXValue: This paragraph contains '");
|
| + window.axInlineBefore1 = axStaticText.childAtIndex(1);
|
| + shouldBe("axInlineBefore1.stringValue", "'AXValue: two lines of text.'");
|
| +
|
| + // Modify the text.
|
| + document.getElementById("p").innerText += ' One more sentence.';
|
| +
|
| + // Make sure the inline text boxes changed.
|
| + shouldBe("axStaticText.childrenCount", "3");
|
| + window.axInlineAfter0 = axStaticText.childAtIndex(0);
|
| + shouldBe("axInlineAfter0.stringValue", "'AXValue: This paragraph contains '");
|
| + window.axInlineAfter1 = axStaticText.childAtIndex(1);
|
| + shouldBe("axInlineAfter1.stringValue", "'AXValue: two lines of text. One '");
|
| + window.axInlineAfter2 = axStaticText.childAtIndex(2);
|
| + shouldBe("axInlineAfter2.stringValue", "'AXValue: more sentence.'");
|
| + }
|
| +</script>
|
| +
|
| +<script src="../fast/js/resources/js-test-post.js"></script>
|
| +</body>
|
| +</html>
|
|
|