Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(833)

Unified Diff: third_party/WebKit/LayoutTests/accessibility/inline-text-change-style.html

Issue 1435113003: Make use of new AX name calc in Chromium. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix issue with ariaTextAlternative Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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();
});
}

Powered by Google App Engine
This is Rietveld 408576698