https://github.com/web-platform-tests/wpt
Raw File
Tip revision: c6ab5feade160e9835407709f586c1bc8a49dd89 authored by Hallvord Reiar M. Steen on 19 January 2016, 15:44:10 UTC
Additional tests for setRequestHeader('Authorize'..) and CORS, fixes #2503
Tip revision: c6ab5fe
watchPosition_permission-manual.html
<!DOCTYPE HTML>
<meta charset='utf-8'>
<title>Call watchPosition, check that there is UI appearing with the document host</title>
<link rel='help' href='http://www.w3.org/TR/geolocation-API/#privacy_for_uas'>

<p>Clear all Geolocation permissions before running this test.</p>

<p>Test passes if there is a permission prompt including the host <strong id='host'></strong> and no FAIL.</p>
<div id='log'></div>

<script>
// Rewrite http://dev.w3.org/geo/api/test-suite/t.html?00019
try {
  var dummyFunction = function() {};
  window.navigator.geolocation.watchPosition(dummyFunction, dummyFunction);

  document.getElementById('host').innerHTML = window.location.hostname;
} catch (e) {
  document.getElementById('log').innerHTML = 'FAIL: ' + e.message;
}
</script>
back to top