mirror of
https://github.com/servo/servo.git
synced 2025-08-31 18:18:21 +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
|
@ -7,8 +7,6 @@
|
|||
<script src="/resources/testharnessreport.js"></script>
|
||||
<script src="/generic-sensor/generic-sensor-tests.js"></script>
|
||||
<div id="log"></div>
|
||||
<iframe src="support-iframe.html" id="frame" style="display:none" sandbox="allow-scripts">
|
||||
</iframe>
|
||||
<script>
|
||||
|
||||
runGenericSensorTests(Gyroscope);
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
@zqzhang
|
||||
@dontcallmedom
|
||||
@tobie
|
||||
@riju
|
||||
@Honry
|
||||
@alexshalamov
|
||||
@pozdnyakov
|
||||
|
|
|
@ -8,72 +8,43 @@
|
|||
<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="gyroscope-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="gyroscope-idl">
|
||||
[Constructor(optional SensorOptions sensorOptions)]
|
||||
[Constructor(optional SensorOptions sensorOptions), Exposed=Window]
|
||||
interface Gyroscope : Sensor {
|
||||
readonly attribute unrestricted double? x;
|
||||
readonly attribute unrestricted double? y;
|
||||
readonly attribute unrestricted double? z;
|
||||
};
|
||||
</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('gyroscope-idl').textContent);
|
||||
|
||||
idl_array.add_objects({
|
||||
|
@ -82,5 +53,4 @@ interface Gyroscope : Sensor {
|
|||
|
||||
idl_array.test();
|
||||
})();
|
||||
|
||||
</script>
|
||||
|
|
|
@ -1,10 +0,0 @@
|
|||
<!DOCTYPE HTML>
|
||||
<meta charset="utf-8">
|
||||
<script>
|
||||
try {
|
||||
let sensor = new Gyroscope();
|
||||
parent.postMessage("sensor.start() can be fired within iframes", '*');
|
||||
} catch (e) {
|
||||
parent.postMessage(e.name, '*');
|
||||
}
|
||||
</script>
|
Loading…
Add table
Add a link
Reference in a new issue