Update web-platform-tests to revision a46616a5b18e83587ddbbed756c7b96cbb4b015d

This commit is contained in:
Josh Matthews 2017-06-19 19:07:14 -04:00 committed by Ms2ger
parent 3f07cfec7c
commit 578498ba24
4001 changed files with 159517 additions and 30260 deletions

View file

@ -2,7 +2,8 @@
<meta charset="utf-8">
<title>Gyroscope Sensor IDL tests</title>
<link rel="author" title="Intel" href="http://www.intel.com">
<link rel="help" href="https://www.w3.org/TR/gyroscope/">
<link rel="help" href="https://w3c.github.io/gyroscope/">
<link rel="help" href="https://w3c.github.io/sensors/">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/resources/WebIDLParser.js"></script>
@ -18,24 +19,24 @@
interface Event {
};
interface EventTarget {
};
interface EventHandler {
};
interface Error {
};
dictionary EventInit {
};
interface EventTarget {
};
interface EventHandler {
};
</pre>
<pre id="generic-idl">
[SecureContext]
interface Sensor : EventTarget {
readonly attribute SensorState state;
readonly attribute SensorReading? reading;
readonly attribute boolean activated;
readonly attribute DOMHighResTimeStamp? timestamp;
void start();
void stop();
attribute EventHandler onchange;
@ -47,18 +48,6 @@ dictionary SensorOptions {
double? frequency;
};
enum SensorState {
"idle",
"activating",
"activated",
"errored"
};
[SecureContext]
interface SensorReading {
readonly attribute DOMHighResTimeStamp timeStamp;
};
[SecureContext, Constructor(DOMString type, SensorErrorEventInit errorEventInitDict)]
interface SensorErrorEvent : Event {
readonly attribute Error error;
@ -67,42 +56,31 @@ interface SensorErrorEvent : Event {
dictionary SensorErrorEventInit : EventInit {
required Error error;
};
</pre>
<pre id="gyroscope-idl">
[Constructor(optional SensorOptions sensorOptions)]
interface Gyroscope : Sensor {
readonly attribute GyroscopeReading? reading;
};
[Constructor(GyroscopeReadingInit GyroscopeReadingInit)]
interface GyroscopeReading : SensorReading {
readonly attribute unrestricted double x;
readonly attribute unrestricted double y;
readonly attribute unrestricted double z;
};
dictionary GyroscopeReadingInit {
unrestricted double x = 0;
unrestricted double y = 0;
unrestricted double z = 0;
readonly attribute unrestricted double? x;
readonly attribute unrestricted double? y;
readonly attribute unrestricted double? z;
};
</pre>
<script>
(function() {
(() => {
"use strict";
var idl_array = new IdlArray();
let idl_array = new IdlArray();
idl_array.add_untested_idls(document.getElementById('idl').textContent);
idl_array.add_untested_idls(document.getElementById('generic-idl').textContent);
idl_array.add_idls(document.getElementById('gyroscope-idl').textContent);
idl_array.add_objects({
Gyroscope: ['new Gyroscope();'],
GyroscopeReading: ['new GyroscopeReading({x: 0.5, y: 0.5, z: 0.5});']
Gyroscope: ['new Gyroscope();']
});
idl_array.test();
})();
</script>