haikuwebkit/LayoutTests/fast/css/element-scrollByLines-scrol...

19 lines
544 B
HTML

<!DOCTYPE html>
<html>
<body>
<script src="../../resources/testharness.js"></script>
<script src="../../resources/testharnessreport.js"></script>
<script>
test(function() {
assert_equals(document.scrollingElement.scrollByLines, undefined);
assert_equals(Element.prototype.scrollByLines, undefined);
}, "Element.scrollByLines");
test(function() {
assert_equals(document.scrollingElement.scrollByPages, undefined);
assert_equals(Element.prototype.scrollByPages, undefined);
}, "Element.scrollByPages");
</script>
</body>
</html>