Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(149)

Unified Diff: third_party/WebKit/LayoutTests/webexposed/web-animations-api.html

Issue 2806623003: Implement Animation constructor (Closed)
Patch Set: Update one more webexposed test expectation Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/LayoutTests/webexposed/web-animations-api.html
diff --git a/third_party/WebKit/LayoutTests/webexposed/web-animations-api.html b/third_party/WebKit/LayoutTests/webexposed/web-animations-api.html
index 403e292ba4de52e10bb4fd4bbe239696f6fdb563..832401720e5ee79a2b03c441b85458b04afe5e0b 100644
--- a/third_party/WebKit/LayoutTests/webexposed/web-animations-api.html
+++ b/third_party/WebKit/LayoutTests/webexposed/web-animations-api.html
@@ -11,8 +11,8 @@ test(function() {
}, 'Element.getAnimations() 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 LayoutTests/webexposed.');
+ assert_true('Animation' in window);
+},'Animation constructor should be exposed.');
test(function() {
assert_false('AnimationTimeline' in window);

Powered by Google App Engine
This is Rietveld 408576698