Chromium Code Reviews| Index: LayoutTests/fast/dom/Geolocation/script-tests/timeout-over-max-of-unisgned.js |
| diff --git a/LayoutTests/fast/dom/Geolocation/script-tests/timeout.js b/LayoutTests/fast/dom/Geolocation/script-tests/timeout-over-max-of-unisgned.js |
| similarity index 85% |
| copy from LayoutTests/fast/dom/Geolocation/script-tests/timeout.js |
| copy to LayoutTests/fast/dom/Geolocation/script-tests/timeout-over-max-of-unisgned.js |
| index 77b11a20f554da4aa1e7421872544fa54664aec3..026031510e05fff418900f7e5d98950144143861 100644 |
| --- a/LayoutTests/fast/dom/Geolocation/script-tests/timeout.js |
| +++ b/LayoutTests/fast/dom/Geolocation/script-tests/timeout-over-max-of-unisgned.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 than maximum of unsigned, the success callback is called as expected."); |
|
Michael van Ouwerkerk
2014/05/15 11:01:47
s/over than/over/
|
| 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; |