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

Side by Side Diff: LayoutTests/webexposed/element-animate.html

Issue 96283002: Web Animations API: Start implementation of Element.animate(). (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Added test to check that animate() does not leak into stable. Created 7 years 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 unified diff | Download patch
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <script src="../resources/js-test.js"></script>
3 <script>
4 description("Check that Element.animate() is not available without experimental web platform features enabled.");
5 // The expectation is that this will fail in LayoutTests/webexposed (where flags are on)
6 // and pass in LayoutTests/virtual/stable/webexposed (where flags are off).
Steve Block 2013/12/11 05:24:08 This comment is probably superfluous and likely to
rjwright 2013/12/11 05:44:47 Done.
7 if ('animate' in Element.prototype)
8 testFailed("Element.animate() is exposed");
9 else
10 testPassed("Element.animate() is not exposed.")
11 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698