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

<title>Historical CSS Transition features must be removed</title>
<link rel="help" href="http://www.w3.org/TR/css3-transitions-1/#starting">

<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 = [
  "WebKitTransitionEvent", // Replaced by unprefixed TransitionEvent
];
nukedInterfaces.forEach(isInterfaceNuked);
</script>