| Index: third_party/WebKit/LayoutTests/accessibility/inline-text-change-style.html
|
| diff --git a/third_party/WebKit/LayoutTests/accessibility/inline-text-change-style.html b/third_party/WebKit/LayoutTests/accessibility/inline-text-change-style.html
|
| index e05e8a2667b039fa21a46b86ddcee3eca04c3aa2..64760911df49359f63d2147ced25ede62be839f6 100644
|
| --- a/third_party/WebKit/LayoutTests/accessibility/inline-text-change-style.html
|
| +++ b/third_party/WebKit/LayoutTests/accessibility/inline-text-change-style.html
|
| @@ -26,9 +26,9 @@
|
| shouldBe("axStaticText.childrenCount", "2");
|
|
|
| window.axInlineBefore0 = axStaticText.childAtIndex(0);
|
| - shouldBe("axInlineBefore0.stringValue", "'AXValue: This paragraph contains '");
|
| + shouldBe("axInlineBefore0.name", "'This paragraph contains '");
|
| window.axInlineBefore1 = axStaticText.childAtIndex(1);
|
| - shouldBe("axInlineBefore1.stringValue", "'AXValue: two lines of text.'");
|
| + shouldBe("axInlineBefore1.name", "'two lines of text.'");
|
|
|
| // Modify the text.
|
| document.getElementById("p").style.width = "100em";
|
| @@ -38,7 +38,7 @@
|
| // Make sure the inline text boxes changed.
|
| shouldBe("axStaticText.childrenCount", "1");
|
| window.axInlineAfter0 = axStaticText.childAtIndex(0);
|
| - shouldBe("axInlineAfter0.stringValue", "'AXValue: This paragraph contains two lines of text.'");
|
| + shouldBe("axInlineAfter0.name", "'This paragraph contains two lines of text.'");
|
| finishJSTest();
|
| });
|
| }
|
|
|