gecko-dev/testing/web-platform/tests/css/css-animations/historical.html
Florian Rivoal 7c38fde4df Bug 1626518 [wpt PR 22591] - Fix a bunch of links to specs that are not or no longer correct, a=testonly
Automatic update from web-platform-tests
Fix a bunch of links to specs that are not or no longer correct (#22591)

--

wpt-commits: 7dd40e82414995002e8a9c20a167db0efac628d5
wpt-pr: 22591
2020-04-06 12:43:46 +00:00

18 lines
577 B
HTML

<!DOCTYPE html>
<title>Historical CSS Animation features must be removed</title>
<link rel="help" href="https://www.w3.org/TR/css-animations-1/#animations">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script>
function isInterfaceNuked(name) {
test(function() {
assert_equals(window[name], undefined)
}, "Historical CSS features must be removed: " + name)
}
var nukedInterfaces = [
"WebKitAnimationEvent", // Replaced by unprefixed AnimationEvent
];
nukedInterfaces.forEach(isInterfaceNuked);
</script>