Update web-platform-tests to revision fbe1d224ce01b0844030db54a3cc6060c6d6c17a

This commit is contained in:
WPT Sync Bot 2020-09-24 08:19:13 +00:00
parent 3c34da1c91
commit aec530632a
105 changed files with 1097 additions and 543 deletions

View file

@ -72,13 +72,16 @@ function run_fp_tests_enabled(sensorName) {
);
}, `${sensorName}: ${header} allows same-origin iframes.`);
// Set allow="feature;feature;..." on iframe element to delegate features
// under test to cross origin subframe.
async_test(t => {
assert_implements(sensorName in self, `${sensorName} is not supported.`);
test_feature_availability(
desc,
t,
cross_origin_src + sensorName,
expect_feature_available_default
expect_feature_available_default,
feature_policies[sensorName].join(";")
);
}, `${sensorName}: ${header} allows cross-origin iframes.`);
}