blob: a688a380a7783277061a0b759e5b7e3501299170 [file] [log] [blame]
<!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>