Update web-platform-tests to revision 0d318188757a9c996e20b82db201fd04de5aa255

This commit is contained in:
James Graham 2015-03-27 09:15:38 +00:00
parent b2a5225831
commit 1a81b18b9f
12321 changed files with 544385 additions and 6 deletions

View file

@ -0,0 +1,21 @@
<!DOCTYPE HTML>
<meta charset='utf-8'>
<title>Call getCurrentPosition, 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?00018
try {
var dummyFunction = function() {};
window.navigator.geolocation.getCurrentPosition(dummyFunction, dummyFunction);
document.getElementById('host').innerHTML = window.location.hostname;
} catch (e) {
document.getElementById('log').innerHTML = 'FAIL: an exception was thrown unexpectedly: ' + e.message;
}
</script>