jQuery: scrollLeft /scrollTop test suites

This commit is contained in:
John Reilly
2014-01-10 13:38:25 +00:00
parent e97d59b953
commit c733d25651
+14
View File
@@ -1814,6 +1814,20 @@ function test_outerWidth() {
" , outerWidth( true ):" + p.outerWidth(true));
}
function test_scrollLeft() {
var p = $("p:first");
$("p:last").text("scrollLeft:" + p.scrollLeft());
$("div.demo").scrollLeft(300);
}
function test_scrollTop() {
var p = $("p:first");
$("p:last").text("scrollTop:" + p.scrollTop());
$("div.demo").scrollTop(300);
}
function test_position() {
var p = $("p:first");
var position = p.position();