| Index: LayoutTests/fast/dom/Geolocation/script-tests/timeout-over-max-of-unsigned.js
|
| diff --git a/LayoutTests/fast/dom/Geolocation/script-tests/timeout.js b/LayoutTests/fast/dom/Geolocation/script-tests/timeout-over-max-of-unsigned.js
|
| similarity index 86%
|
| copy from LayoutTests/fast/dom/Geolocation/script-tests/timeout.js
|
| copy to LayoutTests/fast/dom/Geolocation/script-tests/timeout-over-max-of-unsigned.js
|
| index 77b11a20f554da4aa1e7421872544fa54664aec3..e934d3ad85ce2de79b2bbfac4a6693063038b1fa 100644
|
| --- a/LayoutTests/fast/dom/Geolocation/script-tests/timeout.js
|
| +++ b/LayoutTests/fast/dom/Geolocation/script-tests/timeout-over-max-of-unsigned.js
|
| @@ -1,4 +1,4 @@
|
| -description("Tests that when timeout is non-zero, the success callback is called as expected.");
|
| +description("Tests that when timeout value is over maximum of unsigned, the success callback is called as expected.");
|
|
|
| var mockLatitude = 51.478;
|
| var mockLongitude = -0.166;
|
| @@ -25,7 +25,7 @@ navigator.geolocation.getCurrentPosition(function(p) {
|
| testFailed('Error callback invoked unexpectedly');
|
| finishJSTest();
|
| }, {
|
| - timeout: 1000
|
| + timeout: 4294967296
|
| });
|
|
|
| window.jsTestIsAsync = true;
|
|
|