mirror of
https://github.com/servo/servo.git
synced 2025-07-11 01:13:41 +01:00
18 lines
563 B
HTML
18 lines
563 B
HTML
<!DOCTYPE html>
|
|
|
|
<title>Historical CSS Animation features must be removed</title>
|
|
<link rel="help" href="http://www.w3.org/TR/css3-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>
|