blob: ad0018e66dc840f7aa2b721dc7a94b4238d86452 [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<style>
div {
height: 9999px;
width:9999px;
}
</style>
<script src="../../../resources/js-test-pre.js"></script>
<script>
function runTest() {
description('Tests that for non-standard mode document.body.scrollLeft returns the scroll left value as 0');
document.body.scrollLeft = 0;
shouldBe("document.body.scrollLeft","0");
isSuccessfullyParsed();
}
</script>
</head>
<body onload="runTest()">
<div></div>
<script src="../../../resources/js-test-post.js"></script>
</body>
</html>