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

Unified Diff: third_party/WebKit/LayoutTests/accessibility/display-none-change.html

Issue 2858493002: Rename AXObject to AXObjectImpl in modules/ and web/ (Closed)
Patch Set: Reverted unexpected change to blink rename merge helper Created 3 years, 7 months 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/display-none-change.html
diff --git a/third_party/WebKit/LayoutTests/accessibility/display-none-change.html b/third_party/WebKit/LayoutTests/accessibility/display-none-change.html
index 8b247767ef3010abcd3c5beb6621ee4f107eb76e..2fbe1198adb5d5fdbc6e6b104490bbe062be704e 100644
--- a/third_party/WebKit/LayoutTests/accessibility/display-none-change.html
+++ b/third_party/WebKit/LayoutTests/accessibility/display-none-change.html
@@ -9,7 +9,7 @@
test(function(t){
var axButton = accessibilityController.accessibleElementById("button");
- // Get the AXObject for the label indirectly, even though it's display:none.
+ // Get the AXObjectImpl for the label indirectly, even though it's display:none.
// Ensure that it's valid.
var axLabel = axButton.nameElementAtIndex(0);
assert_equals(axLabel.isValid, true);
@@ -19,8 +19,8 @@ test(function(t){
var label = document.getElementById('label');
label.style.display = "block";
- // Ensure that the previous AXObject we had for the label is now invalid, but if
- // we fetch an AXObject for it, we get a new valid object.
+ // Ensure that the previous AXObjectImpl we had for the label is now invalid, but if
+ // we fetch an AXObjectImpl for it, we get a new valid object.
var axLabel2 = axButton.nameElementAtIndex(0);
assert_equals(axLabel.isValid, false);
assert_equals(axLabel2.isValid, true);
@@ -30,8 +30,8 @@ test(function(t){
// Now hide the label again.
label.style.display = "none";
- // Check once more: the second AXObject is now invalid, but if we fetch
- // an AXObject for the label a third time, we get a valid object again.
+ // Check once more: the second AXObjectImpl is now invalid, but if we fetch
+ // an AXObjectImpl for the label a third time, we get a valid object again.
var axLabel3 = axButton.nameElementAtIndex(0);
assert_equals(axLabel.isValid, false);
assert_equals(axLabel2.isValid, false);

Powered by Google App Engine
This is Rietveld 408576698