Index: LayoutTests/webexposed/web-animations-api.html |
diff --git a/LayoutTests/webexposed/web-animations-api.html b/LayoutTests/webexposed/web-animations-api.html |
index d7b4e48925de0188b4a325224f59d5197e2b1ef6..bef6d88ad8e3d2043dc46be585ca4657c69b5384 100644 |
--- a/LayoutTests/webexposed/web-animations-api.html |
+++ b/LayoutTests/webexposed/web-animations-api.html |
@@ -12,9 +12,17 @@ test(function() { |
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.'); |
+},'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> |