From 914368530ba622ff0117cd34bec058fb0d862155 Mon Sep 17 00:00:00 2001 From: Moonchild Date: Thu, 4 Feb 2021 19:41:06 +0000 Subject: Issue #439 - Remove web-platform tests from the tree. This removes a total of 23,936 files we would never use nor have the capacity to properly maintain or keep up-to-date. --- .../tests/orientation-event/free-fall-manual.html | 48 ------------- .../horizontal-surface-manual.html | 34 --------- .../tests/orientation-event/idlharness.html | 84 ---------------------- .../orientation-event/screen-upmost-manual.html | 51 ------------- .../orientation-event/screen-upright-manual.html | 50 ------------- .../tests/orientation-event/t001-manual.html | 26 ------- .../tests/orientation-event/t002-manual.html | 35 --------- .../tests/orientation-event/t003-manual.html | 34 --------- .../tests/orientation-event/t006-manual.html | 34 --------- .../tests/orientation-event/t009-manual.html | 34 --------- .../tests/orientation-event/t010-manual.html | 34 --------- .../tests/orientation-event/t012-manual.html | 41 ----------- .../tests/orientation-event/t021-manual.html | 26 ------- .../tests/orientation-event/t022-manual.html | 35 --------- .../tests/orientation-event/t023-manual.html | 34 --------- .../tests/orientation-event/t025-manual.html | 38 ---------- .../tests/orientation-event/t028-manual.html | 36 ---------- 17 files changed, 674 deletions(-) delete mode 100644 testing/web-platform/tests/orientation-event/free-fall-manual.html delete mode 100644 testing/web-platform/tests/orientation-event/horizontal-surface-manual.html delete mode 100644 testing/web-platform/tests/orientation-event/idlharness.html delete mode 100644 testing/web-platform/tests/orientation-event/screen-upmost-manual.html delete mode 100644 testing/web-platform/tests/orientation-event/screen-upright-manual.html delete mode 100644 testing/web-platform/tests/orientation-event/t001-manual.html delete mode 100644 testing/web-platform/tests/orientation-event/t002-manual.html delete mode 100644 testing/web-platform/tests/orientation-event/t003-manual.html delete mode 100644 testing/web-platform/tests/orientation-event/t006-manual.html delete mode 100644 testing/web-platform/tests/orientation-event/t009-manual.html delete mode 100644 testing/web-platform/tests/orientation-event/t010-manual.html delete mode 100644 testing/web-platform/tests/orientation-event/t012-manual.html delete mode 100644 testing/web-platform/tests/orientation-event/t021-manual.html delete mode 100644 testing/web-platform/tests/orientation-event/t022-manual.html delete mode 100644 testing/web-platform/tests/orientation-event/t023-manual.html delete mode 100644 testing/web-platform/tests/orientation-event/t025-manual.html delete mode 100644 testing/web-platform/tests/orientation-event/t028-manual.html (limited to 'testing/web-platform/tests/orientation-event') diff --git a/testing/web-platform/tests/orientation-event/free-fall-manual.html b/testing/web-platform/tests/orientation-event/free-fall-manual.html deleted file mode 100644 index eaec7eb09..000000000 --- a/testing/web-platform/tests/orientation-event/free-fall-manual.html +++ /dev/null @@ -1,48 +0,0 @@ - - - - DeviceMotionEvent: A device in free-fall, with the screen horizontal and upmost - - - - - - -

Free fall the device to run the test, with the screen horizontal and upmost.

-
- - - - diff --git a/testing/web-platform/tests/orientation-event/horizontal-surface-manual.html b/testing/web-platform/tests/orientation-event/horizontal-surface-manual.html deleted file mode 100644 index 0b7302e70..000000000 --- a/testing/web-platform/tests/orientation-event/horizontal-surface-manual.html +++ /dev/null @@ -1,34 +0,0 @@ - - - - DeviceOrientationEvent: A device lying flat on a horizontal surface - - - - - - -

Put the device on a horizontal surface to run the test.

-
- - - - diff --git a/testing/web-platform/tests/orientation-event/idlharness.html b/testing/web-platform/tests/orientation-event/idlharness.html deleted file mode 100644 index d8139a800..000000000 --- a/testing/web-platform/tests/orientation-event/idlharness.html +++ /dev/null @@ -1,84 +0,0 @@ - - -DeviceOrientation Event IDL tests - - - - - - - -
- -
-interface Event {
-};
-
-dictionary EventInit {
-};
-
- -
-[Constructor(DOMString type, optional DeviceOrientationEventInit eventInitDict)]
-interface DeviceOrientationEvent : Event {
-  readonly attribute double? alpha;
-  readonly attribute double? beta;
-  readonly attribute double? gamma;
-  readonly attribute boolean absolute;
-};
-
-dictionary DeviceOrientationEventInit : EventInit {
-  double? alpha;
-  double? beta;
-  double? gamma;
-  boolean absolute;
-};
-
-[Callback, NoInterfaceObject]
-interface DeviceAcceleration {
-  readonly attribute double? x;
-  readonly attribute double? y;
-  readonly attribute double? z;
-};
-
-[Callback, NoInterfaceObject]
-interface DeviceRotationRate {
-  readonly attribute double? alpha;
-  readonly attribute double? beta;
-  readonly attribute double? gamma;
-};
-
-[Constructor(DOMString type, optional DeviceMotionEventInit eventInitDict)]
-interface DeviceMotionEvent : Event {
-  readonly attribute DeviceAcceleration? acceleration;
-  readonly attribute DeviceAcceleration? accelerationIncludingGravity;
-  readonly attribute DeviceRotationRate? rotationRate;
-  readonly attribute double? interval;
-};
-
-dictionary DeviceMotionEventInit : EventInit {
-  DeviceAcceleration? acceleration;
-  DeviceAcceleration? accelerationIncludingGravity;
-  DeviceRotationRate? rotationRate;
-  double? interval;
-};
-
- - diff --git a/testing/web-platform/tests/orientation-event/screen-upmost-manual.html b/testing/web-platform/tests/orientation-event/screen-upmost-manual.html deleted file mode 100644 index 87ad62c58..000000000 --- a/testing/web-platform/tests/orientation-event/screen-upmost-manual.html +++ /dev/null @@ -1,51 +0,0 @@ - - - - DeviceMotionEvent: A device lying flat on a horizontal surface with the screen upmost - - - - - - -

Put the device on a horizontal surface with the screen upmost.

-
- - - - diff --git a/testing/web-platform/tests/orientation-event/screen-upright-manual.html b/testing/web-platform/tests/orientation-event/screen-upright-manual.html deleted file mode 100644 index 0896a3810..000000000 --- a/testing/web-platform/tests/orientation-event/screen-upright-manual.html +++ /dev/null @@ -1,50 +0,0 @@ - - - - DeviceMotionEvent: A device with the screen upright - - - - - - -

Put the device with the screen upright.

-
- - - - diff --git a/testing/web-platform/tests/orientation-event/t001-manual.html b/testing/web-platform/tests/orientation-event/t001-manual.html deleted file mode 100644 index 3f8c46d94..000000000 --- a/testing/web-platform/tests/orientation-event/t001-manual.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - User agents implementing this specification must provide a new DOM event, named deviceorientation - - - - - - - -

Rotate the device to run the test.

-
- - - - diff --git a/testing/web-platform/tests/orientation-event/t002-manual.html b/testing/web-platform/tests/orientation-event/t002-manual.html deleted file mode 100644 index 13acb4683..000000000 --- a/testing/web-platform/tests/orientation-event/t002-manual.html +++ /dev/null @@ -1,35 +0,0 @@ - - - - The corresponding event must be of type DeviceOrientationEvent and must fire on the window object. - - - - - - - -

Rotate the device to run the tests.

-
- - - - diff --git a/testing/web-platform/tests/orientation-event/t003-manual.html b/testing/web-platform/tests/orientation-event/t003-manual.html deleted file mode 100644 index 210ebbb57..000000000 --- a/testing/web-platform/tests/orientation-event/t003-manual.html +++ /dev/null @@ -1,34 +0,0 @@ - - - - User agents must also provide an event handler IDL attribute [HTML5] named ondeviceorientation on the window object - - - - - - - -

Rotate the device to run the tests.

-
- - - - diff --git a/testing/web-platform/tests/orientation-event/t006-manual.html b/testing/web-platform/tests/orientation-event/t006-manual.html deleted file mode 100644 index 204972ace..000000000 --- a/testing/web-platform/tests/orientation-event/t006-manual.html +++ /dev/null @@ -1,34 +0,0 @@ - - - - Rotate the device frame around its z axis - - - - - - - -

Rotate the device frame around its z axis to run the test.

-
- - - - diff --git a/testing/web-platform/tests/orientation-event/t009-manual.html b/testing/web-platform/tests/orientation-event/t009-manual.html deleted file mode 100644 index 8b8cdc866..000000000 --- a/testing/web-platform/tests/orientation-event/t009-manual.html +++ /dev/null @@ -1,34 +0,0 @@ - - - - Rotate the device frame around its x axis - - - - - - - -

Rotate the device frame around its x axis to run the test.

-
- - - - diff --git a/testing/web-platform/tests/orientation-event/t010-manual.html b/testing/web-platform/tests/orientation-event/t010-manual.html deleted file mode 100644 index e8a6c0b52..000000000 --- a/testing/web-platform/tests/orientation-event/t010-manual.html +++ /dev/null @@ -1,34 +0,0 @@ - - - - Rotate the device frame around its y axis - - - - - - - -

Rotate the device frame around its y axis to run the test.

-
- - - - diff --git a/testing/web-platform/tests/orientation-event/t012-manual.html b/testing/web-platform/tests/orientation-event/t012-manual.html deleted file mode 100644 index cae4979ff..000000000 --- a/testing/web-platform/tests/orientation-event/t012-manual.html +++ /dev/null @@ -1,41 +0,0 @@ - - - - Implementations that are unable to provide all three angles must set the values of the unknown angles to null - - - - - - - -

Precondition: implementation is unable to provide all three angles

-

Rotate the device to run the test.

-
- - - - diff --git a/testing/web-platform/tests/orientation-event/t021-manual.html b/testing/web-platform/tests/orientation-event/t021-manual.html deleted file mode 100644 index 4d421c926..000000000 --- a/testing/web-platform/tests/orientation-event/t021-manual.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - User agents implementing this specification must provide a new DOM event, named devicemotion - - - - - - - -

Move the device to run the test.

-
- - - - diff --git a/testing/web-platform/tests/orientation-event/t022-manual.html b/testing/web-platform/tests/orientation-event/t022-manual.html deleted file mode 100644 index 9f61fe2d3..000000000 --- a/testing/web-platform/tests/orientation-event/t022-manual.html +++ /dev/null @@ -1,35 +0,0 @@ - - - - The corresponding event must be of type DeviceOrientationEvent and must fire on the window object - - - - - - - -

Move the device to run the test.

-
- - - - diff --git a/testing/web-platform/tests/orientation-event/t023-manual.html b/testing/web-platform/tests/orientation-event/t023-manual.html deleted file mode 100644 index 6202777f0..000000000 --- a/testing/web-platform/tests/orientation-event/t023-manual.html +++ /dev/null @@ -1,34 +0,0 @@ - - - - User agents must also provide an event handler IDL attribute HTML5 named ondevicemotion on the window object - - - - - - - -

Move the device to run the test.

-
- - - - diff --git a/testing/web-platform/tests/orientation-event/t025-manual.html b/testing/web-platform/tests/orientation-event/t025-manual.html deleted file mode 100644 index 9489855fc..000000000 --- a/testing/web-platform/tests/orientation-event/t025-manual.html +++ /dev/null @@ -1,38 +0,0 @@ - - - - Implementations that are unable to provide acceleration data without the effect of gravity may instead supply the acceleration including the effect of gravity - - - - - - - -

Move the device to run the test.

-
- - - - diff --git a/testing/web-platform/tests/orientation-event/t028-manual.html b/testing/web-platform/tests/orientation-event/t028-manual.html deleted file mode 100644 index 669c4e47e..000000000 --- a/testing/web-platform/tests/orientation-event/t028-manual.html +++ /dev/null @@ -1,36 +0,0 @@ - - - - The interval property must be expressed in milliseconds. It must be a constant, to simplify filtering of the data by the Web application - - - - - - - -

Move the device to run the test.

-
- - - - -- cgit v1.2.3