Update web-platform-tests to revision 8a2ceb5f18911302b7a5c1cd2791f4ab50ad4326

This commit is contained in:
Josh Matthews 2017-10-12 09:25:50 -04:00
parent 462c272380
commit 1f531f66ea
5377 changed files with 174916 additions and 84369 deletions

View file

@ -8,82 +8,59 @@
<script src="/resources/testharnessreport.js"></script>
<script src="/resources/WebIDLParser.js"></script>
<script src="/resources/idlharness.js"></script>
<style>
pre {
display: none;
}
</style>
<div id="log"></div>
<pre id="idl">
interface Event {
};
interface Error {
};
dictionary EventInit {
};
<script id="idl" type="text/plain">
interface EventTarget {
};
interface EventHandler {
};
</pre>
</script>
<pre id="generic-idl">
[SecureContext]
<script id="orientation-idl" type="text/plain">
// The interface of Sensor is defined in
// https://www.w3.org/TR/generic-sensor/#idl-index
[SecureContext, Exposed=Window]
interface Sensor : EventTarget {
readonly attribute boolean activated;
readonly attribute DOMHighResTimeStamp? timestamp;
void start();
void stop();
attribute EventHandler onchange;
attribute EventHandler onreading;
attribute EventHandler onactivate;
attribute EventHandler onerror;
};
dictionary SensorOptions {
double? frequency;
};
[SecureContext, Constructor(DOMString type, SensorErrorEventInit errorEventInitDict)]
interface SensorErrorEvent : Event {
readonly attribute Error error;
};
dictionary SensorErrorEventInit : EventInit {
required Error error;
};
</pre>
<pre id="orientation-idl">
typedef (Float32Array or Float64Array or DOMMatrix) RotationMatrixType;
[Exposed=Window]
interface OrientationSensor : Sensor {
readonly attribute FrozenArray<double>? quaternion;
void populateMatrix(RotationMatrixType targetMatrix);
};
[Constructor(optional SensorOptions sensorOptions)]
[Constructor(optional SensorOptions sensorOptions), Exposed=Window]
interface AbsoluteOrientationSensor : OrientationSensor {
};
</pre>
[Constructor(optional SensorOptions sensorOptions), Exposed=Window]
interface RelativeOrientationSensor : OrientationSensor {
};
</script>
<script>
(() => {
"use strict";
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('orientation-idl').textContent);
idl_array.add_objects({
AbsoluteOrientationSensor: ['new AbsoluteOrientationSensor();']
AbsoluteOrientationSensor: ['new AbsoluteOrientationSensor();'],
RelativeOrientationSensor: ['new RelativeOrientationSensor();']
});
idl_array.test();
})();
</script>