blob: 920ab67d0ca41f18289d99ed7247c046c1f09788 [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<style>
#subframe {
width: 200px;
height: 200px;
}
</style>
<script src="../../resources/testharness.js"></script>
<script src="../../resources/testharnessreport.js"></script>
<script src="resources/scroll-behavior-test.js"></script>
<script type="text/javascript">
function getEndPosition(testCase, startPosition) {
var endPosition = {};
endPosition.x = startPosition.x;
endPosition.y = testCase.y;
return endPosition;
}
function jsScroll(testCase) {
var subframe = document.getElementById("subframe");
subframe.contentDocument.scrollingElement.scrollTop = testCase.y;
}
const testScrolls = [
{css: "auto", x: 0, y: 2},
{css: "auto", x: 0, y: 4},
{css: "smooth", waitForEnd: true, x: 0, y: 25},
{css: "smooth", waitForEnd: true, x: 0, y: 45},
{css: "smooth", waitForEnd: false, x: 0, y: 4100},
{css: "smooth", waitForEnd: false, x: 0, y: 20},
];
function doTest()
{
var testCases = [];
for (var i = 0; i < testScrolls.length; i++) {
testCases.push(new ScrollBehaviorTestCase(testScrolls[i]));
}
var subframe = document.getElementById("subframe");
var scrollBehaviorTest = new ScrollBehaviorTest(subframe.contentDocument.scrollingElement,
subframe.contentDocument,
testCases,
getEndPosition,
jsScroll);
scrollBehaviorTest.run();
}
window.addEventListener('load', doTest, false);
</script>
</head>
<body>
<p>Test that setting scrollTop on a subframe works with both scroll behaviors</p>
<iframe id="subframe" src="resources/large-subframe.html"></iframe>
</body>
</html>