blob: d7b4e48925de0188b4a325224f59d5197e2b1ef6 [file] [log] [blame]
<!DOCTYPE html>
<script src="../resources/testharness.js"></script>
<script src="../resources/testharnessreport.js"></script>
<script>
test(function() {
assert_false('animate' in Element.prototype);
}, 'Element.animate() should not be exposed without experimental web platform features enabled.\nThis test is expected to fail in LayouTests/webexposed.');
test(function() {
assert_false('Animation' in window);
},'Animation constructor should not be exposed without experimental web platform features enabled.\nThis test is expected to fail in LayouTests/webexposed.');
test(function() {
assert_false('Timeline' in window);
},'DocumentTimeline should not be exposed without experimental web platform features enabled.\nThis test is expected to fail in LayouTests/webexposed.');
test(function() {
assert_false('timeline' in document);
},'document.timeline should not be exposed without experimental web platform features enabled.\nThis test is expected to fail in LayouTests/webexposed.');
</script>