1
0
Fork 0
firefox/testing/web-platform/tests/css/css-transitions/historical.html
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

18 lines
579 B
HTML

<!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>