Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1)

Unified Diff: third_party/WebKit/LayoutTests/imported/wpt/accelerometer/idlharness.https.html

Issue 2588723002: Import wpt@e1e2bfbe1d34de9826a036a0e9d43ba20190c69c (Closed)
Patch Set: Modify TestExpectations or download new baselines for tests. Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/LayoutTests/imported/wpt/accelerometer/idlharness.https.html
diff --git a/third_party/WebKit/LayoutTests/imported/wpt/accelerometer/idlharness.https.html b/third_party/WebKit/LayoutTests/imported/wpt/accelerometer/idlharness.https.html
new file mode 100644
index 0000000000000000000000000000000000000000..79cd5c925d7496abff426090241ef37d814203d8
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/imported/wpt/accelerometer/idlharness.https.html
@@ -0,0 +1,113 @@
+<!DOCTYPE html>
+<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/">
+<script src="/resources/testharness.js"></script>
+<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 EventTarget {
+};
+
+interface EventHandler {
+};
+
+interface Error {
+};
+
+dictionary EventInit {
+};
+</pre>
+
+<pre id="generic-idl">
+[SecureContext]
+interface Sensor : EventTarget {
+ readonly attribute SensorState state;
+ readonly attribute SensorReading? reading;
+ void start();
+ void stop();
+ attribute EventHandler onchange;
+ attribute EventHandler onactivate;
+ attribute EventHandler onerror;
+};
+
+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;
+};
+
+dictionary SensorErrorEventInit : EventInit {
+ required Error error;
+};
+
+</pre>
+
+<pre id="accelerometer-idl">
+[Constructor(optional AccelerometerOptions accelerometerOptions)]
+interface Accelerometer : Sensor {
+ readonly attribute AccelerometerReading? reading;
+ readonly attribute boolean includesGravity;
+};
+
+dictionary AccelerometerOptions : SensorOptions {
+ boolean includeGravity = true;
+};
+
+[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;
+};
+</pre>
+
+<script>
+(function() {
+ "use strict";
+ var 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});']
+ });
+
+ idl_array.test();
+})();
+</script>

Powered by Google App Engine
This is Rietveld 408576698