mirror of
https://github.com/servo/servo.git
synced 2025-08-26 23:58:20 +01:00
Update web-platform-tests to revision 8a2ceb5f18911302b7a5c1cd2791f4ab50ad4326
This commit is contained in:
parent
462c272380
commit
1f531f66ea
5377 changed files with 174916 additions and 84369 deletions
|
@ -8,80 +8,51 @@
|
|||
<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="accelerometer-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="accelerometer-idl">
|
||||
[Constructor(optional SensorOptions options)]
|
||||
[Constructor(optional SensorOptions options), Exposed=Window]
|
||||
interface Accelerometer : Sensor {
|
||||
readonly attribute unrestricted double? x;
|
||||
readonly attribute unrestricted double? y;
|
||||
readonly attribute unrestricted double? z;
|
||||
};
|
||||
|
||||
[Constructor(optional SensorOptions options)]
|
||||
[Constructor(optional SensorOptions options), Exposed=Window]
|
||||
interface LinearAccelerationSensor : Accelerometer {
|
||||
};
|
||||
|
||||
[Constructor(optional SensorOptions options)]
|
||||
[Constructor(optional SensorOptions options), Exposed=Window]
|
||||
interface GravitySensor : Accelerometer {
|
||||
};
|
||||
</pre>
|
||||
</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('accelerometer-idl').textContent);
|
||||
|
||||
idl_array.add_objects({
|
||||
|
@ -92,5 +63,4 @@ interface GravitySensor : Accelerometer {
|
|||
|
||||
idl_array.test();
|
||||
})();
|
||||
|
||||
</script>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue