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

@ -0,0 +1,16 @@
<!DOCTYPE html>
<meta charset="utf-8">
<title>Accelerometer Test</title>
<link rel="author" title="Intel" href="http://www.intel.com">
<link rel="help" href="https://www.w3.org/TR/accelerometer/">
<script src="/resources/testharness.js"></script>
<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(Accelerometer);
</script>

View file

@ -0,0 +1,20 @@
<!DOCTYPE html>
<meta charset="utf-8">
<title>Accelerometer Test: insecure context</title>
<link rel="author" title="Intel" href="http://www.intel.com">
<link rel="help" href="https://www.w3.org/TR/accelerometer/">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/generic-sensor/generic-sensor-tests.js"></script>
<div id="log"></div>
<h2>Precondition</h2>
<ol>
<li>
Run test in an insecure context, e.g. http://example.com/.
</li>
</ol>
<script>
runGenericSensorInsecureContext(Accelerometer);
</script>

View file

@ -0,0 +1,20 @@
<!DOCTYPE html>
<meta charset="utf-8">
<title>Accelerometer Test: onerror</title>
<link rel="author" title="Intel" href="http://www.intel.com">
<link rel="help" href="https://www.w3.org/TR/accelerometer/">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/generic-sensor/generic-sensor-tests.js"></script>
<div id="log"></div>
<h2>Precondition</h2>
<ol>
<li>
Disable the Accelerometer Sensor or run test on a device without Accelerometer Sensor.
</li>
</ol>
<script>
runGenericSensorOnerror(Accelerometer);
</script>

View file

@ -2,7 +2,8 @@
<meta charset="utf-8">
<title>Accelerometer Sensor IDL tests</title>
<link rel="author" title="Intel" href="http://www.intel.com">
<link rel="help" href="https://www.w3.org/TR/accelerometer/">
<link rel="help" href="https://w3c.github.io/accelerometer/">
<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,47 +56,41 @@ interface SensorErrorEvent : Event {
dictionary SensorErrorEventInit : EventInit {
required Error error;
};
</pre>
<pre id="accelerometer-idl">
[Constructor(optional AccelerometerOptions accelerometerOptions)]
[Constructor(optional SensorOptions options)]
interface Accelerometer : Sensor {
readonly attribute AccelerometerReading? reading;
readonly attribute boolean includesGravity;
readonly attribute unrestricted double? x;
readonly attribute unrestricted double? y;
readonly attribute unrestricted double? z;
};
dictionary AccelerometerOptions : SensorOptions {
boolean includeGravity = true;
[Constructor(optional SensorOptions options)]
interface LinearAccelerationSensor : Accelerometer {
};
[Constructor(AccelerometerReadingInit AccelerometerReadingInit)]
interface AccelerometerReading : SensorReading {
readonly attribute double x;
readonly attribute double y;
readonly attribute double z;
};
dictionary AccelerometerReadingInit {
double x = 0;
double y = 0;
double z = 0;
[Constructor(optional SensorOptions options)]
interface GravitySensor : Accelerometer {
};
</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('accelerometer-idl').textContent);
idl_array.add_objects({
Accelerometer: ['new Accelerometer();'],
AccelerometerReading: ['new AccelerometerReading({x: 0.5, y: 0.5, z: 0.5});']
LinearAccelerationSensor: ['new LinearAccelerationSensor();'],
GravitySensor: ['new GravitySensor();']
});
idl_array.test();
})();
</script>

View file

@ -0,0 +1,10 @@
<!DOCTYPE HTML>
<meta charset="utf-8">
<script>
try {
let sensor = new Accelerometer();
parent.postMessage("sensor.start() can be fired within iframes", '*');
} catch (e) {
parent.postMessage(e.name, '*');
}
</script>