summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/interfaces/gamepad.idl
diff options
context:
space:
mode:
Diffstat (limited to 'testing/web-platform/tests/interfaces/gamepad.idl')
-rw-r--r--testing/web-platform/tests/interfaces/gamepad.idl6
1 files changed, 3 insertions, 3 deletions
diff --git a/testing/web-platform/tests/interfaces/gamepad.idl b/testing/web-platform/tests/interfaces/gamepad.idl
index 77a22c1d85..024e5ea58c 100644
--- a/testing/web-platform/tests/interfaces/gamepad.idl
+++ b/testing/web-platform/tests/interfaces/gamepad.idl
@@ -3,7 +3,7 @@
// (https://github.com/w3c/webref)
// Source: Gamepad (https://w3c.github.io/gamepad/)
-[Exposed=Window, SecureContext]
+[Exposed=Window]
interface Gamepad {
readonly attribute DOMString id;
readonly attribute long index;
@@ -15,7 +15,7 @@ interface Gamepad {
[SameObject] readonly attribute GamepadHapticActuator vibrationActuator;
};
-[Exposed=Window, SecureContext]
+[Exposed=Window]
interface GamepadButton {
readonly attribute boolean pressed;
readonly attribute boolean touched;
@@ -59,7 +59,7 @@ partial interface Navigator {
sequence<Gamepad?> getGamepads();
};
-[Exposed=Window, SecureContext]
+[Exposed=Window]
interface GamepadEvent: Event {
constructor(DOMString type, GamepadEventInit eventInitDict);