blob: f5f7995c9bacafcd4aa43acb708567a9d0b9ef7e [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<script>
if (window.internals) {
internals.settings.setUserInterfaceDirectionPolicy("System");
internals.settings.setSystemLayoutDirection("RTL");
}
</script>
<script src='../../resources/js-test-pre.js'></script>
</head>
<body>
<iframe id="iframe" style="position: absolute; width: 100px; height: 100px; left: 0px; top: 0px; margin: 0px; border: solid black 0px; padding: 0px;"
srcdoc="<!DOCTYPE html>
<head>
</head>
<body style='margin: 0px;'>
<div id='a' style='width: 15px; height: 15px; background: green; display: inline-block;'></div><div id='b' style='width: 15px; height: 15px; background: red; display: inline-block;'></div>
<div style='width: 1px; height: 2000px; position: absolute; left: 0px; top: 0px;'></div>
</body>
</html>"></iframe>
<script>
window.jsTestIsAsync = true;
var iframe = document.getElementById("iframe");
var iframeDocument;
description('This test makes sure that document.elementFromPoint() works correctly with RTL scrollbars.');
iframe.addEventListener("load", function() {
window.setTimeout(function() {
iframeDocument = iframe.contentDocument;
shouldBeEqualToString('iframeDocument.elementFromPoint(7, 7).id', 'a');
finishJSTest();
}, 0);
});
</script>
<script src='../../resources/js-test-post.js'></script>
</body>
</html>