Skip to content

Commit

Permalink
Remove timeout in async_test for geolocation-API tests
Browse files Browse the repository at this point in the history
This async_test was missed during removing all the timeout from async_test.
Add `<meta name=timeout content=long>` in the html head could probably fix
this.
Related: web-platform-tests#14118
  • Loading branch information
qiuzhong authored and Ms2ger committed Nov 27, 2018
1 parent 6f0cf0d commit e1683f9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion geolocation-API/getCurrentPosition_IDL.https.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
<!DOCTYPE HTML>
<meta charset="utf-8">
<meta name=timeout content=long>
<title>Geolocation Test: getCurrentPosition tests</title>
<link rel="help" href="http://www.w3.org/TR/geolocation-API/">
<script src="/resources/testharness.js"></script>
Expand Down Expand Up @@ -125,7 +126,7 @@
fail.done();
}

success = async_test("getCurrentPosition success callback tests", {timeout:20000});
success = async_test("getCurrentPosition success callback tests");

// with a longer timeout and with the user accepting the position request,
// this should test the successcallback
Expand Down

0 comments on commit e1683f9

Please sign in to comment.