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

Unified Diff: LayoutTests/accessibility/aria-setsize-posinset.html

Issue 1099393002: Enabling aria test related to setsize and posinset. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 8 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
« no previous file with comments | « LayoutTests/TestExpectations ('k') | LayoutTests/accessibility/aria-setsize-posinset-expected.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/accessibility/aria-setsize-posinset.html
diff --git a/LayoutTests/accessibility/aria-setsize-posinset.html b/LayoutTests/accessibility/aria-setsize-posinset.html
index 5cd1a2160fab7f3706eb7b9065eb9d0fafd80dd6..8dc8191794dd0892668d95ef977e247341ce7fdc 100644
--- a/LayoutTests/accessibility/aria-setsize-posinset.html
+++ b/LayoutTests/accessibility/aria-setsize-posinset.html
@@ -27,21 +27,21 @@ if (window.accessibilityController) {
var list = accessibilityController.accessibleElementById("list");
- shouldBe("list.childAtIndex[0].setSize", "10");
- shouldBe("list.childAtIndex[1].setSize", "10");
- shouldBe("list.childAtIndex[0].posInSet", "3");
- shouldBe("list.childAtIndex[1].posInSet", "5");
-
- var listbox = document.getElementById("listbox");
-
- shouldBe("listbox.childAtIndex[0].setSize", "4");
- shouldBe("listbox.childAtIndex[1].setSize", "4");
- shouldBe("listbox.childAtIndex[2].setSize", "4");
- shouldBe("listbox.childAtIndex[3].setSize", "4");
- shouldBe("listbox.childAtIndex[0].posInSet", "1");
- shouldBe("listbox.childAtIndex[1].posInSet", "2");
- shouldBe("listbox.childAtIndex[2].posInSet", "3");
- shouldBe("listbox.childAtIndex[3].posInSet", "4");
+ shouldBe("list.childAtIndex(0).setSize", "10");
+ shouldBe("list.childAtIndex(1).setSize", "10");
+ shouldBe("list.childAtIndex(0).posInSet", "3");
+ shouldBe("list.childAtIndex(1).posInSet", "5");
+
+ var listbox = accessibilityController.accessibleElementById("listbox");
+
+ shouldBe("listbox.childAtIndex(0).setSize", "4");
+ shouldBe("listbox.childAtIndex(1).setSize", "4");
+ shouldBe("listbox.childAtIndex(2).setSize", "4");
+ shouldBe("listbox.childAtIndex(3).setSize", "4");
+ shouldBe("listbox.childAtIndex(0).posInSet", "1");
+ shouldBe("listbox.childAtIndex(1).posInSet", "2");
+ shouldBe("listbox.childAtIndex(2).posInSet", "3");
+ shouldBe("listbox.childAtIndex(3).posInSet", "4");
}
</script>
« no previous file with comments | « LayoutTests/TestExpectations ('k') | LayoutTests/accessibility/aria-setsize-posinset-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698