blob: 266ef00de3699f9dd2a2599538c6008e1e1c62f9 [file] [log] [blame]
<html>
<head>
<title>DeviceOrientationAbsolute all-null event test</title>
</head>
<body>
<div id="status">FAIL</div>
</body>
<script type="text/javascript">
function checkOrientationAbsoluteEvent(event) {
return event.alpha == null &&
event.beta == null &&
event.gamma == null;
}
function onOrientationAbsolute(event) {
window.removeEventListener('deviceorientationabsolute', onOrientationAbsolute);
checkOrientationAbsoluteEvent(event) ? pass() : fail();
}
function pass() {
document.getElementById('status').innerHTML = 'PASS';
document.location = '#pass';
}
function fail() {
document.location = '#fail';
}
window.addEventListener('deviceorientationabsolute', onOrientationAbsolute);
</script>
</html>