blob: 94ebb00160239c86de0628ca2dc7affaac9f4199 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
Test that calling scroll methods on the body element scrolls the viewport in quirks mode
On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
PASS successfullyParsed is true
TEST COMPLETE
Test that "scroll" on the document element does not scroll
PASS document.documentElement.scrollTop is 0
PASS document.documentElement.scrollLeft is 0
PASS document.body.scrollTop is 0
PASS document.body.scrollLeft is 0
Test that "scrollTo" on the document element does not scroll
PASS document.documentElement.scrollTop is 0
PASS document.documentElement.scrollLeft is 0
PASS document.body.scrollTop is 0
PASS document.body.scrollLeft is 0
Test that "scrollBy" on the document element does not scroll
PASS document.documentElement.scrollTop is 0
PASS document.documentElement.scrollLeft is 0
PASS document.body.scrollTop is 0
PASS document.body.scrollLeft is 0
Test that "scroll" on the body element scrolls
PASS document.documentElement.scrollTop is 0
PASS document.documentElement.scrollLeft is 0
PASS document.body.scrollTop is 100
PASS document.body.scrollLeft is 50
Test that "scrollTo" on the body element scrolls
PASS document.documentElement.scrollTop is 0
PASS document.documentElement.scrollLeft is 0
PASS document.body.scrollTop is 200
PASS document.body.scrollLeft is 450
Test that "scrollBy" on the body element scrolls
PASS document.documentElement.scrollTop is 0
PASS document.documentElement.scrollLeft is 0
PASS document.body.scrollTop is 300
PASS document.body.scrollLeft is 750
|