Upstream version 9.38.198.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / LayoutTests / webexposed / web-animations-api.html
index e3e52af..516b920 100644 (file)
@@ -7,22 +7,26 @@ test(function() {
 }, 'Element.animate() should be exposed.');
 
 test(function() {
+    assert_false('getAnimationPlayers' in Element.prototype);
+}, 'Element.getAnimationPlayers() should not be exposed without experimental web platform features enabled.\nThis test is expected to fail in LayoutTests/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.');
+},'Animation constructor should not be exposed without experimental web platform features enabled.\nThis test is expected to fail in LayoutTests/webexposed.');
 
 test(function() {
     assert_false('AnimationTimeline' in window);
-},'Timeline should not be exposed without experimental web platform features enabled.\nThis test is expected to fail in LayouTests/webexposed.');
+},'Timeline should not be exposed without experimental web platform features enabled.\nThis test is expected to fail in LayoutTests/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.');
+},'document.timeline should not be exposed without experimental web platform features enabled.\nThis test is expected to fail in LayoutTests/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.');
+},'Timing should not be exposed without experimental web platform features enabled.\nThis test is expected to fail in LayoutTests/webexposed.');
 
 test(function() {
     assert_false('AnimationNode' in window);
-},'AnimationNode should not be exposed without experimental web platform features enabled.\nThis test is expected to fail in LayouTests/webexposed.');
+},'AnimationNode should not be exposed without experimental web platform features enabled.\nThis test is expected to fail in LayoutTests/webexposed.');
 </script>