summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-animations/historical.html
blob: f9b13fa016323f53623038167ed7e444f10fd0b1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<!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>