summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/gamepad/gamepad-supported-by-feature-policy.html
blob: a688a380a7783277061a0b759e5b7e3501299170 (plain)
1
2
3
4
5
6
7
8
9
10
11
<!DOCTYPE html>
<title>Test that gamepad is advertised in the feature list</title>
<link rel="help" href="https://w3c.github.io/webappsec-feature-policy/#dom-featurepolicy-features">
<link rel="help" href="https://github.com/w3c/encrypted-media/pull/432">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script>
test(() => {
    assert_in_array('gamepad', document.featurePolicy.features());
}, 'document.featurePolicy.features should advertise gamepad.');
</script>