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
45
|
[scroll-behavior-main-frame-window.html]
[Main frame with smooth scroll-behavior ; scroll() with default behavior]
bug:
if fission: https://bugzilla.mozilla.org/show_bug.cgi?id=1712639
expected:
if not fission and swgl and (os == "android"): PASS
if not fission and not swgl: PASS
[PASS, FAIL]
[Main frame with auto scroll-behavior ; scroll() with smooth behavior]
expected:
if (os == "linux") and debug and not fission and not swgl: [FAIL, PASS]
if (os == "linux") and not debug and fission and (processor == "x86"): [FAIL, PASS]
if (os == "linux") and not debug and fission and (processor == "x86_64"): [FAIL, PASS]
if (os == "win") and not debug and (processor == "x86_64"): [FAIL, PASS]
if (os == "mac") and debug: [FAIL, PASS]
if os == "android": PASS
[PASS, FAIL]
[Main frame with smooth scroll-behavior ; scrollBy() with default behavior]
expected:
if (os == "win") and debug and not swgl: [PASS, FAIL]
[Main frame with auto scroll-behavior ; scrollBy() with smooth behavior]
expected:
if (os == "win") and debug and not swgl: [PASS, FAIL]
[Aborting an ongoing smooth scrolling on the main frame with another smooth scrolling]
expected:
if processor == "x86": [PASS, FAIL]
[Main frame with smooth scroll-behavior ; scrollTo() with default behavior]
bug:
if fission and (os == "win") and debug: https://bugzilla.mozilla.org/show_bug.cgi?id=1712639
expected:
if debug and (os == "linux") and not fission and swgl: [PASS, FAIL]
if debug and (os == "linux") and fission: [PASS, FAIL]
if debug and (os == "mac"): [PASS, FAIL]
if debug and (os == "win"): [PASS, FAIL]
[Main frame with auto scroll-behavior ; scrollTo() with smooth behavior]
bug:
if fission and (os == "win") and debug: https://bugzilla.mozilla.org/show_bug.cgi?id=1712639
expected:
if debug and fission: [PASS, FAIL]
|