005.html.ini (1126B)
1 [005.html] 2 [<body onpopstate="..."> should register a listener for the popstate event] 3 bug: 4 if os == "linux": https://bugzilla.mozilla.org/show_bug.cgi?id=1668853 5 if (os == "win") and debug: https://bugzilla.mozilla.org/show_bug.cgi?id=1668853 6 expected: 7 if (os == "linux") and fission and not asan and not tsan: [PASS, FAIL] 8 if (os == "mac") and debug: [PASS, FAIL] 9 if (os == "mac") and not debug: PASS 10 if os == "win": [PASS, FAIL] 11 if os == "android": PASS 12 [FAIL, PASS] 13 14 [window.onpopstate should register a listener for the popstate event] 15 bug: 16 if (os == "mac") and debug: https://bugzilla.mozilla.org/show_bug.cgi?id=1692852 17 if (os == "win") and debug: https://bugzilla.mozilla.org/show_bug.cgi?id=1692852 18 if (os == "linux") and debug: https://bugzilla.mozilla.org/show_bug.cgi?id=1692852 19 if (os == "android") and fission and debug: https://bugzilla.mozilla.org/show_bug.cgi?id=1692852 20 expected: 21 if (os == "win") and not debug: PASS 22 if (os == "mac") and not debug: PASS 23 if os == "android": PASS 24 [PASS, FAIL]