<!DOCTYPE html> <meta charset="utf-8"> <title>Gyroscope Test</title> <meta name="timeout" content="long"> <link rel="author" title="Intel" href="http://www.intel.com"> <link rel="help" href="https://www.w3.org/TR/gyroscope/"> <script src="/resources/testharness.js"></script> <script src="/resources/testharnessreport.js"></script> <script src="/generic-sensor/resources/generic-sensor-helpers.js"></script> <script src="/generic-sensor/generic-sensor-tests.js"></script> <script> 'use strict'; const kReadings = { readings: [ [1.12345, 2.12345, 3.12345] ], expectedReadings: [ [1.12345, 2.12345, 3.12345] ], expectedRemappedReadings: [ [-2.12345, 1.12345, 3.12345] ] }; runGenericSensorTests( 'Gyroscope', kReadings, verifyXyzSensorReading, ['gyroscope']); </script>