| 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");
|
| }
|
|
|