mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-10 21:28:04 +02:00
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
18 lines
577 B
HTML
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>
|