blob: a5f280edfa6ec3902ca0d46919baa6850c03932b [file] [log] [blame]
<!DOCTYPE HTML>
<html>
<head>
<script src="../resources/js-test.js"></script>
<style>
.container {
padding: 100px;
margin: 100px;
border: 1px solid #000;
height: 900px;
overflow: scroll;
}
.inner {
width: 2000px;
}
.bigbutton {
display:inline-block;
width: 600px;
height: 600px;
}
</style>
</head>
<body>
<div id="container" class="container">
<div class="inner">
<button class="bigbutton">One</button>
<button class="bigbutton">Two</button>
<button class="bigbutton">Three</button>
</div>
</div>
<div id="console"></div>
<script>
description("This test ensures that scrolling the window sends a notification.");
window.jsTestIsAsync = true;
if (window.testRunner && window.accessibilityController) {
testRunner.dumpAsText();
var container = document.getElementById('container');
accessibilityController.addNotificationListener(function (target, notification) {
if (target.role == 'AXRole: AXDiv') {
debug('Got notification on container div');
shouldBe("container.scrollLeft", "500");
accessibilityController.removeNotificationListener();
finishJSTest();
}
});
window.setTimeout(function() {
container.scrollLeft = 500;
}, 0);
}
</script>
</body>
</html>