blob: 76b41d4557381c303a9d2590a6d6a90ae9987d8d [file] [log] [blame]
<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');
document.body.scrollLeft = 500;
shouldBe("document.body.scrollLeft","500");
isSuccessfullyParsed();
}
</script>
</head>
<body onload="runTest()">
<div></div>
<script src="../../../resources/js-test-post.js"></script>
</body>
</html>