/
githubmirror
/
servo
Обзор
Документация
Войти
/
githubmirror
/
servo
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
components/script_bindings/webidls/GamepadButton.webidl
13 строк
494 B
WaterWhisperer
feat: `gamepad` feature flag (#41451)
21 дек 2025, 16:18
Не верифицирован
21 дек 2025, 16:18
6623cc1
Код
Авторство
О чём код?
/* This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at https://mozilla.org/MPL/2.0/. */ // skip-unless CARGO_FEATURE_GAMEPAD // https://w3c.github.io/gamepad/#gamepadbutton-interface [Exposed=Window, Pref="dom_gamepad_enabled"] interface GamepadButton { readonly attribute boolean pressed; readonly attribute boolean touched; readonly attribute double value; };