Bug 1290065 - Extend timeout for sendBeacon redirect test so redirect can happen before querying the result. r=tomcat

This commit is contained in:
Christoph Kerschbaumer 2016-07-28 14:53:37 +02:00
Родитель a65cdc8f83
Коммит 1ded1763e4
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -47,8 +47,8 @@ function runTest() {
navigator.sendBeacon(BEACON_URL, data);
// we have to make sure the channel did follow the redirect hence
// we have to wait for 2 seconds before we can query the result.
intervalID = setInterval(queryIfRedirectSucceeded, 2000);
// we have to wait for 4 seconds before we can query the result.
intervalID = setInterval(queryIfRedirectSucceeded, 4000);
}
</script>