blob: bef6d88ad8e3d2043dc46be585ca4657c69b5384 [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);
},'Timeline 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.');
test(function() {
assert_false('Timing' in window);
},'Timing should not be exposed without experimental web platform features enabled.\nThis test is expected to fail in LayouTests/webexposed.');
test(function() {
assert_false('TimedItem' in window);
},'TimedItem should not be exposed without experimental web platform features enabled.\nThis test is expected to fail in LayouTests/webexposed.');
</script>