https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 570156428c6cda2f41c964720161dc236ce68e2e authored by Josh Matthews on 23 November 2018, 20:53:25 UTC
Set default for manifest_update flag appropriately.
Tip revision: 5701564
idlharness.https.window.js
// META: script=/resources/WebIDLParser.js
// META: script=/resources/idlharness.js

// https://w3c.github.io/orientation-sensor/">

'use strict';

idl_test(
  ['orientation-sensor'],
  ['generic-sensor', 'dom'],
  idl_array => {
    idl_array.add_objects({
      AbsoluteOrientationSensor: ['new AbsoluteOrientationSensor();'],
      RelativeOrientationSensor: ['new RelativeOrientationSensor();']
    });
    idl_array.prevent_multiple_testing('OrientationSensor');
  }
);
back to top