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

Unified Diff: third_party/WebKit/LayoutTests/accessibility/loading-iframe-updates-axtree.html

Issue 1564863002: Get rid of AXScrollView and AXScrollbar (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@dump_oopif_3
Patch Set: Fix Android expectation Created 4 years, 11 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/loading-iframe-updates-axtree.html
diff --git a/third_party/WebKit/LayoutTests/accessibility/loading-iframe-updates-axtree.html b/third_party/WebKit/LayoutTests/accessibility/loading-iframe-updates-axtree.html
index 141d67ef19638bfed97ecd492df2a2204f3801ed..dbb726c0158864cfe2048f4ee72aeac8bd8fd909 100644
--- a/third_party/WebKit/LayoutTests/accessibility/loading-iframe-updates-axtree.html
+++ b/third_party/WebKit/LayoutTests/accessibility/loading-iframe-updates-axtree.html
@@ -12,19 +12,16 @@
if (window.accessibilityController) {
window.iframe = accessibilityController.accessibleElementById('iframe');
- window.scrollarea = iframe.childAtIndex(0);
- window.subwebarea = scrollarea.childAtIndex(0);
+ window.subwebarea = iframe.childAtIndex(0);
}
window.iframeElement = document.getElementById("iframe");
iframeElement.addEventListener("load", function() {
if (window.accessibilityController) {
window.newIframe = accessibilityController.accessibleElementById('iframe');
- window.newScrollarea = newIframe.childAtIndex(0);
- window.newSubwebarea = newScrollarea.childAtIndex(0);
+ window.newSubwebarea = newIframe.childAtIndex(0);
shouldBeTrue("iframe.isEqual(newIframe)");
- shouldBeFalse("scrollarea.isEqual(newScrollarea)");
shouldBeFalse("subwebarea.isEqual(newSubwebarea)");
shouldBeTrue("newSubwebarea.childrenCount > 0");
}

Powered by Google App Engine
This is Rietveld 408576698