tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

RelativeOrientationSensor.https.html (1054B)


      1 <!DOCTYPE html>
      2 <meta charset="utf-8">
      3 <title>OrientationSensor Test</title>
      4 <meta name="timeout" content="long">
      5 <link rel="author" title="Intel" href="http://www.intel.com">
      6 <link rel="help" href="https://w3c.github.io/orientation-sensor/">
      7 <link rel="help" href="https://w3c.github.io/sensors/">
      8 <script src="/resources/testharness.js"></script>
      9 <script src="/resources/testharnessreport.js"></script>
     10 <script src="/resources/testdriver.js?feature=bidi"></script>
     11 <script src="/resources/testdriver-vendor.js"></script>
     12 <script src="/page-visibility/resources/window_state_context.js"></script>
     13 <script src="/generic-sensor/resources/generic-sensor-helpers.js"></script>
     14 <script src="/generic-sensor/generic-sensor-tests.js"></script>
     15 <script src="/orientation-sensor/orientation-sensor-tests.js"></script>
     16 <script src="resources/sensor-data.js"></script>
     17 <script>
     18 
     19 'use strict';
     20 
     21 runGenericSensorTests(kRelativeOrientationSensorData, kOrientationReadings);
     22 
     23 runOrientationSensorTests(kRelativeOrientationSensorData, kOrientationReadings);
     24 
     25 </script>