https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 676c178fc2825dcabac4af6389cf7aab836d69a1 authored by Simon Pieters on 07 September 2018, 17:45:23 UTC
Fix legend-default-style.html
Tip revision: 676c178
idlharness.https.window.js
// META: script=/resources/WebIDLParser.js
// META: script=/resources/idlharness.js

// https://w3c.github.io/accelerometer/

"use strict";

idl_test(
  ['accelerometer'],
  ['generic-sensor', 'dom'],
  idl_array => {
    idl_array.add_objects({
      Accelerometer: ['new Accelerometer();'],
      LinearAccelerationSensor: ['new LinearAccelerationSensor();'],
      GravitySensor: ['new GravitySensor();']
    });
  }
);
back to top