mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-12 14:20:14 +02:00
Automatic update from web-platform-testsRemove WebKitAnimationEvent This is an obsolete prefixed alias of AnimationEvent. An intent-to-remove has been sent, and has got LGTM*3. Blink intent thread: https://groups.google.com/a/chromium.org/forum/#!topic/blink-dev/EgMUDqySZwE Bug: 695504 Change-Id: Ia86e830fe3f653aa6a7b2f983afb75fd4d088831 Reviewed-on: https://chromium-review.googlesource.com/1238497 Commit-Queue: Stephen McGruer <smcgruer@chromium.org> Reviewed-by: Dave Tapuska <dtapuska@chromium.org> Reviewed-by: Tim Volodine <timvolodine@chromium.org> Reviewed-by: Rick Byers <rbyers@chromium.org> Cr-Commit-Position: refs/heads/master@{#593405} -- wpt-commits: 1c99c70996f35332b8a65040bf745f19678a6686 wpt-pr: 13149
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>
|