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

Unified Diff: third_party/WebKit/LayoutTests/imported/wpt/gyroscope/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/gyroscope/idlharness.https.html
diff --git a/third_party/WebKit/LayoutTests/imported/wpt/gyroscope/idlharness.https.html b/third_party/WebKit/LayoutTests/imported/wpt/gyroscope/idlharness.https.html
new file mode 100644
index 0000000000000000000000000000000000000000..53d3b81cce6d1c377644101e1a70c8402e17690a
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/imported/wpt/gyroscope/idlharness.https.html
@@ -0,0 +1,108 @@
+<!DOCTYPE html>
+<meta charset="utf-8">
+<title>Gyroscope Sensor IDL tests</title>
+<link rel="author" title="Intel" href="http://www.intel.com">
+<link rel="help" href="https://www.w3.org/TR/gyroscope/">
+<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="gyroscope-idl">
+[Constructor(optional SensorOptions sensorOptions)]
+interface Gyroscope : Sensor {
+ readonly attribute GyroscopeReading? reading;
+};
+
+[Constructor(GyroscopeReadingInit GyroscopeReadingInit)]
+interface GyroscopeReading : SensorReading {
+ readonly attribute unrestricted double x;
+ readonly attribute unrestricted double y;
+ readonly attribute unrestricted double z;
+};
+
+dictionary GyroscopeReadingInit {
+ unrestricted double x = 0;
+ unrestricted double y = 0;
+ unrestricted 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('gyroscope-idl').textContent);
+
+ idl_array.add_objects({
+ Gyroscope: ['new Gyroscope();'],
+ GyroscopeReading: ['new GyroscopeReading({x: 0.5, y: 0.5, z: 0.5});']
+ });
+
+ idl_array.test();
+})();
+</script>

Powered by Google App Engine
This is Rietveld 408576698